This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a segmentation fault when mismatching parenthesis are used eg. PRINT ) Fixed a trailing 0 removing error Added a patch so that doing PRINT 100+1*3 is possible (idk why it was happening so i fixed the effects instead of the problem) Added examples
- Loading branch information
Showing
6 changed files
with
102 additions
and
27 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
set e, 0 | ||
dowhile e = 0 | ||
set i$, input$("Bomb le bunker? [Y/n]: ") | ||
if i$ = "": set e, 1: endif | ||
if chr$(asc(i$)) = "y": set e, 1: endif | ||
if chr$(asc(i$)) = "Y": set e, 1: endif | ||
if chr$(asc(i$)) = "n": set e, 2: endif | ||
if chr$(asc(i$)) = "N": set e, 2: endif | ||
loop | ||
print "You have chosen...\n" | ||
if e = 1 | ||
print "Sending nukes..." | ||
wait 3 | ||
print "\nDone." | ||
else | ||
print "Le buker lives another day." | ||
endif | ||
exit |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
do: set e, cint(rand(31, 126)): set c, cint(rand(1)): color c*8+2: : if cint(rand(1)) = 0: : endif: print chr$(e): if cint(rand(15)) = 0: print "\r\e[2K": endif: if cint(rand(255)) = 0: print "\n": endif: loop |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
print "test\n" | ||
color 21 | ||
print "blue\n" | ||
$txtbold | ||
|
||
set E, 0 | ||
do | ||
set E, E+1 | ||
print E, "\t" | ||
loopwhile e < 256 | ||
foo | ||
|
||
foo | ||
|
||
nac |
Oops, something went wrong.