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.
 
 
 
 
 
 

24 lines
261 B

  1. REM Purpose: Verify example program
  2. REM Refer:
  3. REM Page: 11
  4. REM
  5. PRINT 12 AND 3
  6. PRINT &HC AND &H5
  7. PRINT NOT -1
  8. PRINT NOT &H3
  9. PRINT 12 OR 3
  10. PRINT &H0C OR &H5
  11. LET I% = 12.11
  12. LET J% = 3.2
  13. PRINT I% XOR J%
  14. LET I% = 12.11
  15. LET J% = 3.7
  16. PRINT I% XOR J%
  17. END