5 lines
89 B
Text
5 lines
89 B
Text
(let s "")
|
|
(if (empty? s)
|
|
(print "empty"))
|
|
(if (not (empty? s))
|
|
(print "not empty"))
|