From a2ae520c8da88fa616c1744c6a02a55eced8c41f Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 2 Feb 2023 00:18:00 -0500 Subject: [PATCH] Initial Commit --- bin/main.bas | Bin 0 -> 684 bytes src/main.bas | 27 +++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 bin/main.bas create mode 100644 src/main.bas diff --git a/bin/main.bas b/bin/main.bas new file mode 100644 index 0000000000000000000000000000000000000000..e05506d4db3e6a61f5a62d843d4d23ca83d16412 GIT binary patch literal 684 zcmaJ-J1hi282+!DnL?$L$Zts8Y3yEHh$ELhw|5RVBRjW|mFOsG(Oo1WLMM^vBqZWh zcvVD+TCI{$D^wb0XWdIs?aY4Pe6JX3Aq;l#K5qB*C!mM4>I=^~qFZ6Xca-n)DpNmnP9`l_ zrYki_r>kLh%7QJr+1RF9?8t_Fx*bLdcToPwIEPcZ3#Q5)JqnSslufH~c+r5Kb8^B7 z&?z`Yk-?x>@U%I1!6&`cIiics$OCT1u`Ot0w{=8EI`SjOA$yNi0N@Kg{ numofguesses then goto 80 +90 if guessnum > numofguesses then goto 170 +100 print "guess "guessnum" :" +110 input "enter your guess";guess +120 if guess = asdf then goto 220 +130 if guess <> asdf then goto 150 +140 guessnum = guessnum+1 +150 print "you suck" +160 goto 80 +170 print "too many guesses" +170 input "play again? y/n";again$ +180 if again$ = "y" then goto 10 +190 if again$ <> "n" then goto 500 +200 end +210 if again$ <> "n" then goto 500 +220 print "good job" +230 input "play again? y/n";again$ +240 if again$ = "y" then goto 10 +250 if again$ <> "n" then goto 500 +500 end \ No newline at end of file