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

8 lines
124 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let string$=""
if string$=""
print 1 "The string is empty."
elseif string$<>""
print 1 "The string is not empty."
endif
end