1
0
Fork 0

fuck html

This commit is contained in:
dtb 2023-09-18 00:58:02 -04:00
parent 97e588cc89
commit 1cd509cbaf
1 changed files with 14 additions and 14 deletions

View File

@ -2026,41 +2026,41 @@ Old money bitch underscores
Disp "GUESSNEXT","CODED BY","DEVEN BLAKE 2018
Pause
ClrHome
5->A
5->A
//Prepper
Lbl A
5+A->A
5+A->A
Disp "GUESSES:",A
Pause
randInt(1,100)->B
1->D
100->E
randInt(1,100)->B
1->D
100->E
ClrHome
//Main loop
Lbl B
Disp D," TO",E,"","YOUR GUESS?
Input "> ",C
A-1->A
Input "> ",C
A-1->A
If C=B
Disp "CORRECT","
//Seperate IFs so as to avoid memory leakage
If C=B
Goto A
If C<B
If C&lt;B
Then
Disp "TOO LOW
If C>D
C->D
If C&gt;D
C-&gt;D
End
If C>B
If C&gt;B
Then
Disp "TOO HIGH
If C<E
C->E
If C&lt;E
C-&gt;E
End
If A<1
If A&lt;1
Then
Disp "OUT OF GUESSES.
Return