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

5 lines
104 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
10 let s=""
20 if s="" then let o=""
30 if s<>"" then let o="not "
40 print "The string is ";o;"empty."