[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Fun with Setsyntax



If you do (SETSYNTAX 13. 32. 13.) and then do
(
)
It will say 
;BLAST, MISSING ")"
This is a minimal case. You can experiment yourself. Another fun thing
to do is
(SETQ A '((FOO
 )))
You have to have the space on the 2nd line if I remember right so that you
don't get the ;BLAST, MISSING ")" error, and it will give you back
((FOO
))
as a result (no vertical bars!!) ... Bob looked up the printname of it
and it is a list ( ( FOO^M . NIL ) . NIL) ...