ChipMaster's bwBASIC
This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 10 REM 'LE (<=)' TEST PROGRAM
- 20 IF 10 LE 20 THEN 50
- 30 PRINT "THE LE OPERATOR FAILED THE TEST IN LINE 20"
- 40 GOTO 99
- 50 IF 20 LE 20 THEN 80
- 60 PRINT "THE LE OPERATOR FAILED THE TEST IN LINE 50"
- 70 GOTO 99
- 80 PRINT "THE LE OPERATOR PASSED THE TEST"
- 99 END
|