RosettaCodeData/Task/Empty-string/Wee-Basic/empty-string.basic
2023-07-01 13:44:08 -04:00

7 lines
124 B
Text

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