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

6 lines
89 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
(let s "")
(if (empty? s)
(print "empty"))
(if (not (empty? s))
(print "not empty"))