在我的 shell 中,我正在尝试一些东西,并注意到并在我的let语句开头添加了换行符。
let
[86]> (setf A 5) 5 [87]> (let () (print 'hello) (print 'there) A ) ;; this blank line right here HELLO THERE 5
有没有删除额外的换行符?
lisp common-lisp
common-lisp ×1
lisp ×1