我正在使用方案将一些s表达式输出到端口,我真的很想 在我正在编写的信息流中添加评论。
由于;
字符会在我不确定如何实际注释后会注释所有内容
这样做,注释不是S表达式,所以引用不起作用
(display ;some comment) ; obviously not working
(display ';some comment) ; does not make sense
(display '(;some comment)) ; could make sense, does not work
答案 0 :(得分:3)
您可以使用字符串引号对;
进行转义。
(display ";some comment")
有效。