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

9 lines
104 B
Plaintext

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