RosettaCodeData/Task/Empty-string/Ursa/empty-string.ursa
2023-07-01 13:44:08 -04: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