RosettaCodeData/Task/Empty-string/ArkScript/empty-string.ark
2025-08-11 18:05:26 -07:00

5 lines
89 B
Text

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