RosettaCodeData/Task/Empty-string/Arturo/empty-string.arturo
2023-07-01 13:44:08 -04:00

9 lines
239 B
Text

s: ""
if empty? s -> print "the string is empty"
if 0 = size s -> print "yes, the string is empty"
s: "hello world"
if not? empty? s -> print "the string is not empty"
if 0 < size s -> print "no, the string is not empty"