You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the S-expression lexer and parser only support comments that start with ";". However Racket and other Scheme variants also support more types of comments, a notable one is the multi-line comment that starts with #|.
Currently the S-expression lexer and parser only support comments that start with ";". However Racket and other Scheme variants also support more types of comments, a notable one is the multi-line comment that starts with
#|
.Other types of comments supported in Racket:
https://docs.racket-lang.org/reference/reader.html#%28part._parse-comment%29 (1.3.9 Reading Comments).
The text was updated successfully, but these errors were encountered: