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

3 lines
110 B
Text

10 LET A$=""
20 IF A$="" THEN PRINT "The string is empty."
30 IF A$<>"" THEN PRINT "The string is not empty."