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

4 lines
104 B
Text

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