RosettaCodeData/Task/Empty-string/Arturo/empty-string.arturo

10 lines
239 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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"