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.
 
 
 
 
 
 

25 lines
337 B

  1. 100 rem EDIT test
  2. 110 rem
  3. 120 rem
  4. 130 rem
  5. 140 let a=1
  6. : b=2
  7. : c=3
  8. 150 if a=b then
  9. : print "error"
  10. : else
  11. : print "OK"
  12. : END IF
  13. 160 let d=4
  14. ' comment
  15. 170 if b<>c then
  16. : print "OK"
  17. : print "again"
  18. : else
  19. : print "error"
  20. : print "AGAIN"
  21. : END IF
  22. ' comment2
  23. 180 end