@@ -51,6 +51,7 @@
[(boolean? v) (if v "true" "false")]
[(null? v) "[]"]
[(list? v) (string-append "[" (string-join (map js-datum v) ", ") "]")]
[(pair? v) (js-datum (list (car v) (cdr v)))]
[else (error 'js-datum "unsupported datum: ~e" v)]))
(define (js-stmt s)
The note is not visible to the blocked user.