RosettaCodeData/Task/Empty-string/XLISP/empty-string.xlisp
2017-09-25 22:28:19 +02:00

9 lines
172 B
Text

[1] (define my-empty-string "") ;; assign an empty string to a variable
MY-EMPTY-STRING
[2] (string-null? my-empty-string)
#T
[3] (string-null? "A non-empty string")
()