RosettaCodeData/Task/Empty-string/Ursa/empty-string.ursa
2016-12-05 23:44:36 +01:00

8 lines
104 B
Text

decl string s
set s ""
if (= s "")
out "empty" endl console
else
out "not empty" endl console
end if