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