Last active
December 11, 2020 15:28
-
-
Save trn1ty/ca49c6c3eff95e15bb2924a609573f88 to your computer and use it in GitHub Desktop.
TI-BASIC Tetrator
This file contains 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
Disp "TETRATOR","CODED BY","DEVEN BLAKE","2018-2020 | |
Pause | |
ClrHome | |
Disp "THIS PROGRAM IS","INACCURATE TO","HIGHER NUMBERS","","--YOU'VE BEEN---","-----WARNED----- | |
Pause | |
ClrHome | |
Input "NUMBER TO TETRATE: ",A | |
Input "AMOUNT OF TETRATION: ",B | |
A->C | |
For(I,1,B | |
C^A->C | |
End | |
C |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment