Last active
March 11, 2026 05:20
-
-
Save mit41301/6d2c54910e1a10522a6d83835f76f1ed to your computer and use it in GitHub Desktop.
Just waste TIME by doing nothing useful using BASIC-52
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 10 TIME=0 | |
| 20 CLOCK 1 : REM start the clock | |
| 30 FOR I=1 TO 100 | |
| 40 FOR J=1 TO 100 | |
| 50 K=SQR(EXP(LOG(I*J))) | |
| 55 PRINT I,J,K | |
| 60 NEXT J | |
| 70 NEXT I | |
| 80 CLOCK 0 : REM stop the clock | |
| 90 PRINT TIME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment