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

4 lines
110 B
Plaintext

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