RosettaCodeData/Task/Empty-string/ArkScript/empty-string.ark

6 lines
89 B
Plaintext

(let s "")
(if (empty? s)
(print "empty"))
(if (not (empty? s))
(print "not empty"))