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

9 lines
104 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
decl string s
set s ""
if (= s "")
out "empty" endl console
else
out "not empty" endl console
end if