RosettaCodeData/Task/Empty-string/TXR/empty-string-2.txr

10 lines
138 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
(defvarl a "")
(if (equal a "")
(format t "empty string\n"))
(set a "nonempty")
(if (zerop (length a))
(format t "guess what?\n"))