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 'TIM' TEST PROGRAM
- 15 DEF TIM=TIME
- 20 A=TIM
- 30 PRINT "TIME IS MARCHING ON"
- 40 REM FOR X=1 TO 2000
- 45 SLEEP 3
- 50 REM NEXT X
- 60 B=TIM
- 70 IF B > A THEN 100
- 80 PRINT "THE 'TIM' FUNCTION FAILED THE TEST"
- 90 GOTO 999
- 100 PRINT "'TIM' PASSED THE TEST -- ELAPSED TIME=";B-A
- 999 END
|