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

9 lines
110 B
Text
Raw Permalink Normal View History

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