RosettaCodeData/Task/Empty-string/XLISP/empty-string.xlisp

10 lines
172 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
[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")
()