RosettaCodeData/Task/Empty-string/Ursa/empty-string.ursa
2026-02-01 16:33:20 -08:00

8 lines
110 B
Text

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