RosettaCodeData/Task/Empty-string/Ursa/empty-string.ursa

9 lines
104 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
decl string s
set s ""
if (= s "")
out "empty" endl console
else
out "not empty" endl console
end if