RosettaCodeData/Task/String-comparison/BASIC/string-comparison-2.basic
2023-07-01 13:44:08 -04:00

3 lines
126 B
Text

10 LET A$="BELT"
20 LET B$="belt"
30 IF UPPER$(A$)=UPPER$(B$) THEN PRINT "Disregarding lettercase, the strings are the same."