RosettaCodeData/Task/Empty-string/Quite-BASIC/empty-string.basic

5 lines
104 B
Plaintext

10 let s=""
20 if s="" then let o=""
30 if s<>"" then let o="not "
40 print "The string is ";o;"empty."