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.
 
 
 
 
 
 

14 lines
281 B

  1. 10 REM 'TIM' TEST PROGRAM
  2. 15 DEF TIM=TIME
  3. 20 A=TIM
  4. 30 PRINT "TIME IS MARCHING ON"
  5. 40 REM FOR X=1 TO 2000
  6. 45 SLEEP 3
  7. 50 REM NEXT X
  8. 60 B=TIM
  9. 70 IF B > A THEN 100
  10. 80 PRINT "THE 'TIM' FUNCTION FAILED THE TEST"
  11. 90 GOTO 999
  12. 100 PRINT "'TIM' PASSED THE TEST -- ELAPSED TIME=";B-A
  13. 999 END