RosettaCodeData/Task/Empty-string/Wee-Basic/empty-string.basic

8 lines
124 B
Plaintext

let string$=""
if string$=""
print 1 "The string is empty."
elseif string$<>""
print 1 "The string is not empty."
endif
end