This code, when stored in a file and run from the command line:
Fails with this error message:
But the same code, when fed through the Bel reader on the REPL:
> (set s (append "(" (list \lf) "; comment" (list \lf) ")"))
"(
; comment
)"
> (read (list s))
nil
Works and gives the correct result nil.
This code, when stored in a file and run from the command line:
Fails with this error message:
But the same code, when fed through the Bel reader on the REPL:
Works and gives the correct result
nil.