basic101 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rspec +2 -0
- data/.simplecov +1 -0
- data/.yardopts +7 -0
- data/Changelog.md +3 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +75 -0
- data/LICENSE.md +9 -0
- data/README.md +193 -0
- data/Rakefile +14 -0
- data/VERSION +1 -0
- data/bin/basic101 +10 -0
- data/lib/basic101/abs_function.rb +19 -0
- data/lib/basic101/argument_checker.rb +61 -0
- data/lib/basic101/arguments.rb +32 -0
- data/lib/basic101/array_reference.rb +52 -0
- data/lib/basic101/asc_function.rb +17 -0
- data/lib/basic101/basic_array.rb +69 -0
- data/lib/basic101/basic_comparisons.rb +20 -0
- data/lib/basic101/basic_float.rb +48 -0
- data/lib/basic101/basic_integer.rb +48 -0
- data/lib/basic101/basic_math.rb +22 -0
- data/lib/basic101/basic_numeric.rb +96 -0
- data/lib/basic101/basic_object.rb +35 -0
- data/lib/basic101/basic_string.rb +85 -0
- data/lib/basic101/binary_operation.rb +32 -0
- data/lib/basic101/binary_operations.rb +26 -0
- data/lib/basic101/built_in_functions.rb +31 -0
- data/lib/basic101/chr_function.rb +17 -0
- data/lib/basic101/cos_function.rb +17 -0
- data/lib/basic101/data_statement.rb +24 -0
- data/lib/basic101/define_function_statement.rb +23 -0
- data/lib/basic101/dim_statement.rb +25 -0
- data/lib/basic101/else_statement.rb +22 -0
- data/lib/basic101/end_statement.rb +13 -0
- data/lib/basic101/endif_statement.rb +19 -0
- data/lib/basic101/errors.rb +50 -0
- data/lib/basic101/exp_function.rb +17 -0
- data/lib/basic101/for_stack.rb +48 -0
- data/lib/basic101/for_statement.rb +57 -0
- data/lib/basic101/function.rb +11 -0
- data/lib/basic101/function_call.rb +32 -0
- data/lib/basic101/function_identifier.rb +8 -0
- data/lib/basic101/functions.rb +39 -0
- data/lib/basic101/gosub_statement.rb +23 -0
- data/lib/basic101/goto_statement.rb +23 -0
- data/lib/basic101/identifier.rb +23 -0
- data/lib/basic101/identity.rb +18 -0
- data/lib/basic101/if_statement.rb +31 -0
- data/lib/basic101/input.rb +44 -0
- data/lib/basic101/input_reader.rb +55 -0
- data/lib/basic101/input_statement.rb +46 -0
- data/lib/basic101/int_function.rb +17 -0
- data/lib/basic101/left_function.rb +19 -0
- data/lib/basic101/len_function.rb +18 -0
- data/lib/basic101/let_statement.rb +24 -0
- data/lib/basic101/line.rb +32 -0
- data/lib/basic101/log_function.rb +17 -0
- data/lib/basic101/main.rb +24 -0
- data/lib/basic101/mid_function.rb +20 -0
- data/lib/basic101/negate_operation.rb +21 -0
- data/lib/basic101/next_statement.rb +34 -0
- data/lib/basic101/not_operation.rb +23 -0
- data/lib/basic101/null_prompt_delimeter.rb +12 -0
- data/lib/basic101/null_transcript.rb +20 -0
- data/lib/basic101/numeric_identifier.rb +16 -0
- data/lib/basic101/on_goto_statement.rb +29 -0
- data/lib/basic101/output.rb +73 -0
- data/lib/basic101/parser.rb +457 -0
- data/lib/basic101/power_operation.rb +24 -0
- data/lib/basic101/print_comma.rb +20 -0
- data/lib/basic101/print_semicolon.rb +19 -0
- data/lib/basic101/print_statement.rb +33 -0
- data/lib/basic101/program.rb +100 -0
- data/lib/basic101/program_counter.rb +52 -0
- data/lib/basic101/prompt_delimeter.rb +13 -0
- data/lib/basic101/randomize_statement.rb +13 -0
- data/lib/basic101/read_statement.rb +25 -0
- data/lib/basic101/reference.rb +25 -0
- data/lib/basic101/remark_statement.rb +12 -0
- data/lib/basic101/restore_statement.rb +23 -0
- data/lib/basic101/return_statement.rb +16 -0
- data/lib/basic101/right_function.rb +19 -0
- data/lib/basic101/rnd_function.rb +24 -0
- data/lib/basic101/runtime.rb +132 -0
- data/lib/basic101/scalar_reference.rb +19 -0
- data/lib/basic101/sgn_function.rb +17 -0
- data/lib/basic101/sin_function.rb +17 -0
- data/lib/basic101/sqr_function.rb +17 -0
- data/lib/basic101/statement.rb +36 -0
- data/lib/basic101/stop_statement.rb +14 -0
- data/lib/basic101/str_function.rb +16 -0
- data/lib/basic101/string_identifier.rb +16 -0
- data/lib/basic101/tab.rb +18 -0
- data/lib/basic101/tab_function.rb +17 -0
- data/lib/basic101/tan_function.rb +17 -0
- data/lib/basic101/transcript.rb +37 -0
- data/lib/basic101/transform.rb +264 -0
- data/lib/basic101/user_defined_function.rb +54 -0
- data/lib/basic101/val_function.rb +16 -0
- data/lib/basic101.rb +93 -0
- data/rake_tasks/default.rake +1 -0
- data/rake_tasks/integration.rake +8 -0
- data/rake_tasks/jeweler.rake +28 -0
- data/rake_tasks/spec.rake +8 -0
- data/rake_tasks/test.rake +2 -0
- data/rake_tasks/yard.rake +3 -0
- data/test/integration/arguments.rb +25 -0
- data/test/integration/errors.rb +7 -0
- data/test/integration/integration_test.rb +28 -0
- data/test/integration/main.rb +49 -0
- data/test/integration/output_file.rb +40 -0
- data/test/integration/test.rb +135 -0
- data/test/integration/tests/basic_computer_games/23-match.bas +64 -0
- data/test/integration/tests/basic_computer_games/23-match.input +1 -0
- data/test/integration/tests/basic_computer_games/23-match.output +29 -0
- data/test/integration/tests/basic_computer_games/3dplot.bas +17 -0
- data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
- data/test/integration/tests/basic_computer_games/3dplot.output +47 -0
- data/test/integration/tests/basic_computer_games/aceyducy.bas +100 -0
- data/test/integration/tests/basic_computer_games/aceyducy.input +8 -0
- data/test/integration/tests/basic_computer_games/aceyducy.output +78 -0
- data/test/integration/tests/basic_computer_games/amazing.bas +138 -0
- data/test/integration/tests/basic_computer_games/amazing.input +1 -0
- data/test/integration/tests/basic_computer_games/amazing.output +32 -0
- data/test/integration/tests/basic_computer_games/animal.bas +71 -0
- data/test/integration/tests/basic_computer_games/animal.input +17 -0
- data/test/integration/tests/basic_computer_games/animal.output +38 -0
- data/test/integration/tests/basic_computer_games/awari.bas +70 -0
- data/test/integration/tests/basic_computer_games/awari.input +11 -0
- data/test/integration/tests/basic_computer_games/awari.output +117 -0
- data/test/integration/tests/basic_computer_games/bagels.bas +81 -0
- data/test/integration/tests/basic_computer_games/bagels.input +12 -0
- data/test/integration/tests/basic_computer_games/bagels.output +42 -0
- data/test/integration/tests/basic_computer_games/banner.bas +94 -0
- data/test/integration/tests/basic_computer_games/banner.input +6 -0
- data/test/integration/tests/basic_computer_games/banner.output +135 -0
- data/test/integration/tests/basic_computer_games/basketbl.bas +196 -0
- data/test/integration/tests/basic_computer_games/basketbl.input +46 -0
- data/test/integration/tests/basic_computer_games/basketbl.output +509 -0
- data/test/integration/tests/basic_computer_games/batnum.bas +90 -0
- data/test/integration/tests/basic_computer_games/batnum.input +14 -0
- data/test/integration/tests/basic_computer_games/batnum.output +67 -0
- data/test/integration/tests/basic_computer_games/battle.bas +196 -0
- data/test/integration/tests/basic_computer_games/battle.input +21 -0
- data/test/integration/tests/basic_computer_games/battle.output +118 -0
- data/test/integration/tests/basic_computer_games/blackjck.bas +321 -0
- data/test/integration/tests/basic_computer_games/blackjck.input +26 -0
- data/test/integration/tests/basic_computer_games/blackjck.output +144 -0
- data/test/integration/tests/basic_computer_games/bombard.bas +93 -0
- data/test/integration/tests/basic_computer_games/bombard.input +20 -0
- data/test/integration/tests/basic_computer_games/bombard.output +175 -0
- data/test/integration/tests/basic_computer_games/bounce.bas +53 -0
- data/test/integration/tests/basic_computer_games/bounce.input +0 -0
- data/test/integration/tests/basic_computer_games/bounce.output +15 -0
- data/test/integration/tests/basic_computer_games/bowling.bas +101 -0
- data/test/integration/tests/basic_computer_games/bowling.input +23 -0
- data/test/integration/tests/basic_computer_games/bowling.output +229 -0
- data/test/integration/tests/basic_computer_games/boxing.bas +142 -0
- data/test/integration/tests/basic_computer_games/boxing.input +8 -0
- data/test/integration/tests/basic_computer_games/boxing.output +47 -0
- data/test/integration/tests/basic_computer_games/bug.bas +256 -0
- data/test/integration/tests/basic_computer_games/bug.input +17 -0
- data/test/integration/tests/basic_computer_games/bug.output +847 -0
- data/test/integration/tests/basic_computer_games/bullfght.bas +193 -0
- data/test/integration/tests/basic_computer_games/bullfght.input +4 -0
- data/test/integration/tests/basic_computer_games/bullfght.output +60 -0
- data/test/integration/tests/basic_computer_games/bullseye.bas +37 -0
- data/test/integration/tests/basic_computer_games/bullseye.input +10 -0
- data/test/integration/tests/basic_computer_games/bullseye.output +79 -0
- data/test/integration/tests/basic_computer_games/bunny.bas +40 -0
- data/test/integration/tests/basic_computer_games/bunny.input +0 -0
- data/test/integration/tests/basic_computer_games/bunny.output +67 -0
- data/test/integration/tests/basic_computer_games/buzzword.bas +25 -0
- data/test/integration/tests/basic_computer_games/buzzword.input +4 -0
- data/test/integration/tests/basic_computer_games/buzzword.output +25 -0
- data/test/integration/tests/basic_computer_games/calendar.bas +58 -0
- data/test/integration/tests/basic_computer_games/calendar.input +0 -0
- data/test/integration/tests/basic_computer_games/calendar.output +213 -0
- data/test/integration/tests/basic_computer_games/change.bas +51 -0
- data/test/integration/tests/basic_computer_games/change.input +4 -0
- data/test/integration/tests/basic_computer_games/change.output +28 -0
- data/test/integration/tests/basic_computer_games/checkers.bas +82 -0
- data/test/integration/tests/basic_computer_games/checkers.input +74 -0
- data/test/integration/tests/basic_computer_games/checkers.output +673 -0
- data/test/integration/tests/basic_computer_games/chemist.bas +27 -0
- data/test/integration/tests/basic_computer_games/chemist.input +11 -0
- data/test/integration/tests/basic_computer_games/chemist.output +54 -0
- data/test/integration/tests/basic_computer_games/chief.bas +51 -0
- data/test/integration/tests/basic_computer_games/chief.input +5 -0
- data/test/integration/tests/basic_computer_games/chief.output +19 -0
- data/test/integration/tests/basic_computer_games/chomp.bas +104 -0
- data/test/integration/tests/basic_computer_games/chomp.input +15 -0
- data/test/integration/tests/basic_computer_games/chomp.output +159 -0
- data/test/integration/tests/basic_computer_games/combat.bas +124 -0
- data/test/integration/tests/basic_computer_games/combat.input +7 -0
- data/test/integration/tests/basic_computer_games/combat.output +33 -0
- data/test/integration/tests/basic_computer_games/craps.bas +82 -0
- data/test/integration/tests/basic_computer_games/craps.input +9 -0
- data/test/integration/tests/basic_computer_games/craps.output +51 -0
- data/test/integration/tests/basic_computer_games/cube.bas +161 -0
- data/test/integration/tests/basic_computer_games/cube.input +25 -0
- data/test/integration/tests/basic_computer_games/cube.output +72 -0
- data/test/integration/tests/basic_computer_games/depthchg.bas +33 -0
- data/test/integration/tests/basic_computer_games/depthchg.input +16 -0
- data/test/integration/tests/basic_computer_games/depthchg.output +83 -0
- data/test/integration/tests/basic_computer_games/diamond.bas +27 -0
- data/test/integration/tests/basic_computer_games/diamond.input +1 -0
- data/test/integration/tests/basic_computer_games/diamond.output +65 -0
- data/test/integration/tests/basic_computer_games/dice.bas +31 -0
- data/test/integration/tests/basic_computer_games/dice.input +4 -0
- data/test/integration/tests/basic_computer_games/dice.output +46 -0
- data/test/integration/tests/basic_computer_games/digits.bas +78 -0
- data/test/integration/tests/basic_computer_games/digits.input +5 -0
- data/test/integration/tests/basic_computer_games/digits.output +70 -0
- data/test/integration/tests/basic_computer_games/evenwin1.bas +128 -0
- data/test/integration/tests/basic_computer_games/evenwin1.input +13 -0
- data/test/integration/tests/basic_computer_games/evenwin1.output +116 -0
- data/test/integration/tests/basic_computer_games/evenwin2.bas +70 -0
- data/test/integration/tests/basic_computer_games/evenwin2.input +14 -0
- data/test/integration/tests/basic_computer_games/evenwin2.output +56 -0
- data/test/integration/tests/basic_computer_games/flipflop.bas +79 -0
- data/test/integration/tests/basic_computer_games/flipflop.input +8 -0
- data/test/integration/tests/basic_computer_games/flipflop.output +45 -0
- data/test/integration/tests/basic_computer_games/footbal1.bas +298 -0
- data/test/integration/tests/basic_computer_games/footbal1.input +13 -0
- data/test/integration/tests/basic_computer_games/footbal1.output +315 -0
- data/test/integration/tests/basic_computer_games/footbal2.bas +181 -0
- data/test/integration/tests/basic_computer_games/footbal2.input +23 -0
- data/test/integration/tests/basic_computer_games/footbal2.output +318 -0
- data/test/integration/tests/basic_computer_games/furtradr.bas +170 -0
- data/test/integration/tests/basic_computer_games/furtradr.input +20 -0
- data/test/integration/tests/basic_computer_games/furtradr.output +133 -0
- data/test/integration/tests/basic_computer_games/golf.bas +244 -0
- data/test/integration/tests/basic_computer_games/golf.input +11 -0
- data/test/integration/tests/basic_computer_games/golf.output +69 -0
- data/test/integration/tests/basic_computer_games/gomoko.bas +54 -0
- data/test/integration/tests/basic_computer_games/gomoko.input +6 -0
- data/test/integration/tests/basic_computer_games/gomoko.output +66 -0
- data/test/integration/tests/basic_computer_games/guess.bas +40 -0
- data/test/integration/tests/basic_computer_games/guess.input +8 -0
- data/test/integration/tests/basic_computer_games/guess.output +37 -0
- data/test/integration/tests/basic_computer_games/gunner.bas +52 -0
- data/test/integration/tests/basic_computer_games/gunner.input +18 -0
- data/test/integration/tests/basic_computer_games/gunner.output +91 -0
- data/test/integration/tests/basic_computer_games/hamurabi.bas +119 -0
- data/test/integration/tests/basic_computer_games/hamurabi.input +7 -0
- data/test/integration/tests/basic_computer_games/hamurabi.output +51 -0
- data/test/integration/tests/basic_computer_games/hangman.bas +81 -0
- data/test/integration/tests/basic_computer_games/hangman.input +69 -0
- data/test/integration/tests/basic_computer_games/hangman.output +889 -0
- data/test/integration/tests/basic_computer_games/hello.bas +83 -0
- data/test/integration/tests/basic_computer_games/hello.input +7 -0
- data/test/integration/tests/basic_computer_games/hello.output +46 -0
- data/test/integration/tests/basic_computer_games/hexapawn.bas +174 -0
- data/test/integration/tests/basic_computer_games/hexapawn.input +38 -0
- data/test/integration/tests/basic_computer_games/hexapawn.output +521 -0
- data/test/integration/tests/basic_computer_games/hi-q.bas +135 -0
- data/test/integration/tests/basic_computer_games/hi-q.input +14 -0
- data/test/integration/tests/basic_computer_games/hi-q.output +115 -0
- data/test/integration/tests/basic_computer_games/hilo.bas +29 -0
- data/test/integration/tests/basic_computer_games/hilo.input +20 -0
- data/test/integration/tests/basic_computer_games/hilo.output +76 -0
- data/test/integration/tests/basic_computer_games/hockey.bas +210 -0
- data/test/integration/tests/basic_computer_games/hockey.input +59 -0
- data/test/integration/tests/basic_computer_games/hockey.output +243 -0
- data/test/integration/tests/basic_computer_games/horsrace.bas +130 -0
- data/test/integration/tests/basic_computer_games/horsrace.input +11 -0
- data/test/integration/tests/basic_computer_games/horsrace.output +517 -0
- data/test/integration/tests/basic_computer_games/hurkle.bas +51 -0
- data/test/integration/tests/basic_computer_games/hurkle.input +16 -0
- data/test/integration/tests/basic_computer_games/hurkle.output +81 -0
- data/test/integration/tests/basic_computer_games/kinema.bas +34 -0
- data/test/integration/tests/basic_computer_games/kinema.input +9 -0
- data/test/integration/tests/basic_computer_games/kinema.output +64 -0
- data/test/integration/tests/basic_computer_games/king.bas +268 -0
- data/test/integration/tests/basic_computer_games/king.input +7 -0
- data/test/integration/tests/basic_computer_games/king.output +57 -0
- data/test/integration/tests/basic_computer_games/lem.bas +246 -0
- data/test/integration/tests/basic_computer_games/lem.input +4 -0
- data/test/integration/tests/basic_computer_games/lem.output +68 -0
- data/test/integration/tests/basic_computer_games/letter.bas +26 -0
- data/test/integration/tests/basic_computer_games/letter.input +24 -0
- data/test/integration/tests/basic_computer_games/letter.output +123 -0
- data/test/integration/tests/basic_computer_games/life.bas +66 -0
- data/test/integration/tests/basic_computer_games/life.input +4 -0
- data/test/integration/tests/basic_computer_games/life.options +1 -0
- data/test/integration/tests/basic_computer_games/life.output +200 -0
- data/test/integration/tests/basic_computer_games/life2.bas +83 -0
- data/test/integration/tests/basic_computer_games/life2.input +17 -0
- data/test/integration/tests/basic_computer_games/life2.output +113 -0
- data/test/integration/tests/basic_computer_games/litquiz.bas +49 -0
- data/test/integration/tests/basic_computer_games/litquiz.input +4 -0
- data/test/integration/tests/basic_computer_games/litquiz.output +36 -0
- data/test/integration/tests/basic_computer_games/love.bas +34 -0
- data/test/integration/tests/basic_computer_games/love.input +1 -0
- data/test/integration/tests/basic_computer_games/love.output +67 -0
- data/test/integration/tests/basic_computer_games/lunar.bas +48 -0
- data/test/integration/tests/basic_computer_games/lunar.input +87 -0
- data/test/integration/tests/basic_computer_games/lunar.output +195 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.bas +232 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.input +18 -0
- data/test/integration/tests/basic_computer_games/mastrmnd.output +67 -0
- data/test/integration/tests/basic_computer_games/mathdice.bas +60 -0
- data/test/integration/tests/basic_computer_games/mathdice.input +4 -0
- data/test/integration/tests/basic_computer_games/mathdice.output +86 -0
- data/test/integration/tests/basic_computer_games/mugwump.bas +56 -0
- data/test/integration/tests/basic_computer_games/mugwump.input +16 -0
- data/test/integration/tests/basic_computer_games/mugwump.output +139 -0
- data/test/integration/tests/basic_computer_games/name.bas +25 -0
- data/test/integration/tests/basic_computer_games/name.input +2 -0
- data/test/integration/tests/basic_computer_games/name.output +22 -0
- data/test/integration/tests/basic_computer_games/nicoma.bas +34 -0
- data/test/integration/tests/basic_computer_games/nicoma.input +8 -0
- data/test/integration/tests/basic_computer_games/nicoma.output +36 -0
- data/test/integration/tests/basic_computer_games/nim.bas +156 -0
- data/test/integration/tests/basic_computer_games/nim.input +8 -0
- data/test/integration/tests/basic_computer_games/nim.output +30 -0
- data/test/integration/tests/basic_computer_games/number.bas +37 -0
- data/test/integration/tests/basic_computer_games/number.input +19 -0
- data/test/integration/tests/basic_computer_games/number.output +73 -0
- data/test/integration/tests/basic_computer_games/onecheck.bas +86 -0
- data/test/integration/tests/basic_computer_games/onecheck.input +6 -0
- data/test/integration/tests/basic_computer_games/onecheck.output +77 -0
- data/test/integration/tests/basic_computer_games/orbit.bas +96 -0
- data/test/integration/tests/basic_computer_games/orbit.input +10 -0
- data/test/integration/tests/basic_computer_games/orbit.output +113 -0
- data/test/integration/tests/basic_computer_games/pizza.bas +68 -0
- data/test/integration/tests/basic_computer_games/pizza.input +10 -0
- data/test/integration/tests/basic_computer_games/pizza.output +93 -0
- data/test/integration/tests/basic_computer_games/poetry.bas +42 -0
- data/test/integration/tests/basic_computer_games/poetry.input +0 -0
- data/test/integration/tests/basic_computer_games/poetry.options +1 -0
- data/test/integration/tests/basic_computer_games/poetry.output +50 -0
- data/test/integration/tests/basic_computer_games/poker.bas +416 -0
- data/test/integration/tests/basic_computer_games/poker.input +34 -0
- data/test/integration/tests/basic_computer_games/poker.output +197 -0
- data/test/integration/tests/basic_computer_games/queen.bas +168 -0
- data/test/integration/tests/basic_computer_games/queen.input +10 -0
- data/test/integration/tests/basic_computer_games/queen.output +133 -0
- data/test/integration/tests/basic_computer_games/reverse.bas +62 -0
- data/test/integration/tests/basic_computer_games/reverse.input +12 -0
- data/test/integration/tests/basic_computer_games/reverse.output +79 -0
- data/test/integration/tests/basic_computer_games/rocket.bas +71 -0
- data/test/integration/tests/basic_computer_games/rocket.input +42 -0
- data/test/integration/tests/basic_computer_games/rocket.output +149 -0
- data/test/integration/tests/basic_computer_games/rocksp.bas +33 -0
- data/test/integration/tests/basic_computer_games/rocksp.input +9 -0
- data/test/integration/tests/basic_computer_games/rocksp.output +69 -0
- data/test/integration/tests/basic_computer_games/roulette.bas +239 -0
- data/test/integration/tests/basic_computer_games/roulette.input +9 -0
- data/test/integration/tests/basic_computer_games/roulette.output +98 -0
- data/test/integration/tests/basic_computer_games/rusrou.bas +26 -0
- data/test/integration/tests/basic_computer_games/rusrou.input +9 -0
- data/test/integration/tests/basic_computer_games/rusrou.output +50 -0
- data/test/integration/tests/basic_computer_games/salvo.bas +329 -0
- data/test/integration/tests/basic_computer_games/salvo.input +21 -0
- data/test/integration/tests/basic_computer_games/salvo.output +49 -0
- data/test/integration/tests/basic_computer_games/sinewave.bas +17 -0
- data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
- data/test/integration/tests/basic_computer_games/sinewave.output +168 -0
- data/test/integration/tests/basic_computer_games/slalom.bas +165 -0
- data/test/integration/tests/basic_computer_games/slalom.input +20 -0
- data/test/integration/tests/basic_computer_games/slalom.output +122 -0
- data/test/integration/tests/basic_computer_games/slots.bas +134 -0
- data/test/integration/tests/basic_computer_games/slots.input +2 -0
- data/test/integration/tests/basic_computer_games/slots.output +20 -0
- data/test/integration/tests/basic_computer_games/splat.bas +128 -0
- data/test/integration/tests/basic_computer_games/splat.input +9 -0
- data/test/integration/tests/basic_computer_games/splat.output +61 -0
- data/test/integration/tests/basic_computer_games/stars.bas +54 -0
- data/test/integration/tests/basic_computer_games/stars.input +15 -0
- data/test/integration/tests/basic_computer_games/stars.output +70 -0
- data/test/integration/tests/basic_computer_games/stock.bas +232 -0
- data/test/integration/tests/basic_computer_games/stock.input +30 -0
- data/test/integration/tests/basic_computer_games/stock.output +156 -0
- data/test/integration/tests/basic_computer_games/superstartrek.bas +425 -0
- data/test/integration/tests/basic_computer_games/superstartrek.input +21 -0
- data/test/integration/tests/basic_computer_games/superstartrek.output +151 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.bas +127 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.input +1 -0
- data/test/integration/tests/basic_computer_games/superstartrekins.output +134 -0
- data/test/integration/tests/basic_computer_games/synonym.bas +53 -0
- data/test/integration/tests/basic_computer_games/synonym.input +13 -0
- data/test/integration/tests/basic_computer_games/synonym.output +57 -0
- data/test/integration/tests/basic_computer_games/target.bas +51 -0
- data/test/integration/tests/basic_computer_games/target.input +2 -0
- data/test/integration/tests/basic_computer_games/target.output +39 -0
- data/test/integration/tests/basic_computer_games/tictac1.bas +69 -0
- data/test/integration/tests/basic_computer_games/tictac1.input +10 -0
- data/test/integration/tests/basic_computer_games/tictac1.output +49 -0
- data/test/integration/tests/basic_computer_games/tictac2.bas +114 -0
- data/test/integration/tests/basic_computer_games/tictac2.input +6 -0
- data/test/integration/tests/basic_computer_games/tictac2.output +104 -0
- data/test/integration/tests/basic_computer_games/towers.bas +125 -0
- data/test/integration/tests/basic_computer_games/towers.input +9 -0
- data/test/integration/tests/basic_computer_games/towers.output +70 -0
- data/test/integration/tests/basic_computer_games/train.bas +24 -0
- data/test/integration/tests/basic_computer_games/train.input +4 -0
- data/test/integration/tests/basic_computer_games/train.output +23 -0
- data/test/integration/tests/basic_computer_games/trap.bas +49 -0
- data/test/integration/tests/basic_computer_games/trap.input +7 -0
- data/test/integration/tests/basic_computer_games/trap.output +40 -0
- data/test/integration/tests/basic_computer_games/war.bas +68 -0
- data/test/integration/tests/basic_computer_games/war.input +11 -0
- data/test/integration/tests/basic_computer_games/war.output +54 -0
- data/test/integration/tests/basic_computer_games/weekday.bas +150 -0
- data/test/integration/tests/basic_computer_games/weekday.input +2 -0
- data/test/integration/tests/basic_computer_games/weekday.output +28 -0
- data/test/integration/tests/basic_computer_games/word.bas +65 -0
- data/test/integration/tests/basic_computer_games/word.input +6 -0
- data/test/integration/tests/basic_computer_games/word.output +0 -0
- data/test/integration/tests/fast/abs.bas +5 -0
- data/test/integration/tests/fast/abs.input +0 -0
- data/test/integration/tests/fast/abs.output +5 -0
- data/test/integration/tests/fast/add.bas +5 -0
- data/test/integration/tests/fast/add.input +0 -0
- data/test/integration/tests/fast/add.output +5 -0
- data/test/integration/tests/fast/and.bas +5 -0
- data/test/integration/tests/fast/and.input +0 -0
- data/test/integration/tests/fast/and.output +5 -0
- data/test/integration/tests/fast/array.bas +11 -0
- data/test/integration/tests/fast/array.input +0 -0
- data/test/integration/tests/fast/array.output +6 -0
- data/test/integration/tests/fast/asc.bas +1 -0
- data/test/integration/tests/fast/asc.input +0 -0
- data/test/integration/tests/fast/asc.output +1 -0
- data/test/integration/tests/fast/chr.bas +1 -0
- data/test/integration/tests/fast/chr.input +0 -0
- data/test/integration/tests/fast/chr.output +1 -0
- data/test/integration/tests/fast/cos.bas +1 -0
- data/test/integration/tests/fast/cos.input +0 -0
- data/test/integration/tests/fast/cos.output +1 -0
- data/test/integration/tests/fast/def_fn.bas +9 -0
- data/test/integration/tests/fast/def_fn.input +0 -0
- data/test/integration/tests/fast/def_fn.output +5 -0
- data/test/integration/tests/fast/divide.bas +5 -0
- data/test/integration/tests/fast/divide.input +0 -0
- data/test/integration/tests/fast/divide.output +5 -0
- data/test/integration/tests/fast/end.bas +3 -0
- data/test/integration/tests/fast/end.input +0 -0
- data/test/integration/tests/fast/end.output +1 -0
- data/test/integration/tests/fast/eq.bas +3 -0
- data/test/integration/tests/fast/eq.input +0 -0
- data/test/integration/tests/fast/eq.output +3 -0
- data/test/integration/tests/fast/exp.bas +2 -0
- data/test/integration/tests/fast/exp.input +0 -0
- data/test/integration/tests/fast/exp.output +2 -0
- data/test/integration/tests/fast/float.bas +3 -0
- data/test/integration/tests/fast/float.input +0 -0
- data/test/integration/tests/fast/float.output +2 -0
- data/test/integration/tests/fast/for_next.bas +61 -0
- data/test/integration/tests/fast/for_next.input +0 -0
- data/test/integration/tests/fast/for_next.output +46 -0
- data/test/integration/tests/fast/ge.bas +3 -0
- data/test/integration/tests/fast/ge.input +0 -0
- data/test/integration/tests/fast/ge.output +3 -0
- data/test/integration/tests/fast/gosub_return.bas +10 -0
- data/test/integration/tests/fast/gosub_return.input +0 -0
- data/test/integration/tests/fast/gosub_return.output +4 -0
- data/test/integration/tests/fast/goto.bas +3 -0
- data/test/integration/tests/fast/goto.input +0 -0
- data/test/integration/tests/fast/goto.output +1 -0
- data/test/integration/tests/fast/gt.bas +3 -0
- data/test/integration/tests/fast/gt.input +0 -0
- data/test/integration/tests/fast/gt.output +3 -0
- data/test/integration/tests/fast/if.bas +25 -0
- data/test/integration/tests/fast/if.input +0 -0
- data/test/integration/tests/fast/if.output +8 -0
- data/test/integration/tests/fast/input.bas +24 -0
- data/test/integration/tests/fast/input.input +10 -0
- data/test/integration/tests/fast/input.output +28 -0
- data/test/integration/tests/fast/int.bas +5 -0
- data/test/integration/tests/fast/int.input +0 -0
- data/test/integration/tests/fast/int.output +5 -0
- data/test/integration/tests/fast/integer_plus_string.bas +1 -0
- data/test/integration/tests/fast/integer_plus_string.input +0 -0
- data/test/integration/tests/fast/integer_plus_string.output +1 -0
- data/test/integration/tests/fast/invalid_argument.bas +1 -0
- data/test/integration/tests/fast/invalid_argument.input +0 -0
- data/test/integration/tests/fast/invalid_argument.output +1 -0
- data/test/integration/tests/fast/le.bas +3 -0
- data/test/integration/tests/fast/le.input +0 -0
- data/test/integration/tests/fast/le.output +3 -0
- data/test/integration/tests/fast/left.bas +1 -0
- data/test/integration/tests/fast/left.input +0 -0
- data/test/integration/tests/fast/left.output +1 -0
- data/test/integration/tests/fast/len.bas +2 -0
- data/test/integration/tests/fast/len.input +0 -0
- data/test/integration/tests/fast/len.output +2 -0
- data/test/integration/tests/fast/let.bas +6 -0
- data/test/integration/tests/fast/let.input +0 -0
- data/test/integration/tests/fast/let.output +4 -0
- data/test/integration/tests/fast/log.bas +1 -0
- data/test/integration/tests/fast/log.input +0 -0
- data/test/integration/tests/fast/log.output +1 -0
- data/test/integration/tests/fast/lt.bas +3 -0
- data/test/integration/tests/fast/lt.input +0 -0
- data/test/integration/tests/fast/lt.output +3 -0
- data/test/integration/tests/fast/math.output +0 -0
- data/test/integration/tests/fast/mid.bas +2 -0
- data/test/integration/tests/fast/mid.input +0 -0
- data/test/integration/tests/fast/mid.output +2 -0
- data/test/integration/tests/fast/multiply.bas +5 -0
- data/test/integration/tests/fast/multiply.input +0 -0
- data/test/integration/tests/fast/multiply.output +5 -0
- data/test/integration/tests/fast/ne.bas +3 -0
- data/test/integration/tests/fast/ne.input +0 -0
- data/test/integration/tests/fast/ne.output +3 -0
- data/test/integration/tests/fast/negate.bas +4 -0
- data/test/integration/tests/fast/negate.input +0 -0
- data/test/integration/tests/fast/negate.output +3 -0
- data/test/integration/tests/fast/not.bas +4 -0
- data/test/integration/tests/fast/not.input +0 -0
- data/test/integration/tests/fast/not.output +4 -0
- data/test/integration/tests/fast/on_goto.bas +6 -0
- data/test/integration/tests/fast/on_goto.input +0 -0
- data/test/integration/tests/fast/on_goto.output +2 -0
- data/test/integration/tests/fast/or.bas +5 -0
- data/test/integration/tests/fast/or.input +0 -0
- data/test/integration/tests/fast/or.output +5 -0
- data/test/integration/tests/fast/parentheses.bas +1 -0
- data/test/integration/tests/fast/parentheses.input +0 -0
- data/test/integration/tests/fast/parentheses.output +1 -0
- data/test/integration/tests/fast/power.bas +4 -0
- data/test/integration/tests/fast/power.input +0 -0
- data/test/integration/tests/fast/power.output +4 -0
- data/test/integration/tests/fast/print.bas +6 -0
- data/test/integration/tests/fast/print.input +0 -0
- data/test/integration/tests/fast/print.output +4 -0
- data/test/integration/tests/fast/read_data.bas +15 -0
- data/test/integration/tests/fast/read_data.input +0 -0
- data/test/integration/tests/fast/read_data.output +4 -0
- data/test/integration/tests/fast/rem.bas +1 -0
- data/test/integration/tests/fast/rem.input +0 -0
- data/test/integration/tests/fast/rem.output +0 -0
- data/test/integration/tests/fast/right.bas +1 -0
- data/test/integration/tests/fast/right.input +0 -0
- data/test/integration/tests/fast/right.output +1 -0
- data/test/integration/tests/fast/rnd.bas +5 -0
- data/test/integration/tests/fast/rnd.input +0 -0
- data/test/integration/tests/fast/rnd.output +5 -0
- data/test/integration/tests/fast/sgn.bas +5 -0
- data/test/integration/tests/fast/sgn.input +0 -0
- data/test/integration/tests/fast/sgn.output +5 -0
- data/test/integration/tests/fast/sin.bas +1 -0
- data/test/integration/tests/fast/sin.input +0 -0
- data/test/integration/tests/fast/sin.output +1 -0
- data/test/integration/tests/fast/sqr.bas +2 -0
- data/test/integration/tests/fast/sqr.input +0 -0
- data/test/integration/tests/fast/sqr.output +2 -0
- data/test/integration/tests/fast/stop.bas +3 -0
- data/test/integration/tests/fast/stop.input +0 -0
- data/test/integration/tests/fast/stop.output +2 -0
- data/test/integration/tests/fast/str.bas +3 -0
- data/test/integration/tests/fast/str.input +0 -0
- data/test/integration/tests/fast/str.output +3 -0
- data/test/integration/tests/fast/string_addition.bas +1 -0
- data/test/integration/tests/fast/string_addition.input +0 -0
- data/test/integration/tests/fast/string_addition.output +1 -0
- data/test/integration/tests/fast/string_comparisons.bas +7 -0
- data/test/integration/tests/fast/string_comparisons.input +0 -0
- data/test/integration/tests/fast/string_comparisons.output +4 -0
- data/test/integration/tests/fast/string_plus_integer.bas +1 -0
- data/test/integration/tests/fast/string_plus_integer.input +0 -0
- data/test/integration/tests/fast/string_plus_integer.output +1 -0
- data/test/integration/tests/fast/subtract.bas +5 -0
- data/test/integration/tests/fast/subtract.input +0 -0
- data/test/integration/tests/fast/subtract.output +5 -0
- data/test/integration/tests/fast/tab.bas +4 -0
- data/test/integration/tests/fast/tab.input +0 -0
- data/test/integration/tests/fast/tab.output +3 -0
- data/test/integration/tests/fast/tan.bas +1 -0
- data/test/integration/tests/fast/tan.input +0 -0
- data/test/integration/tests/fast/tan.output +1 -0
- data/test/integration/tests/fast/val.bas +3 -0
- data/test/integration/tests/fast/val.input +0 -0
- data/test/integration/tests/fast/val.output +3 -0
- data/test/spec/argument_checker_spec.rb +128 -0
- data/test/spec/basic_array_spec.rb +100 -0
- data/test/spec/basic_float_spec.rb +168 -0
- data/test/spec/basic_integer_spec.rb +270 -0
- data/test/spec/basic_numeric_spec.rb +16 -0
- data/test/spec/basic_object_spec.rb +22 -0
- data/test/spec/basic_string_spec.rb +259 -0
- data/test/spec/for_stack_spec.rb +70 -0
- data/test/spec/input_reader_spec.rb +143 -0
- data/test/spec/input_spec.rb +102 -0
- data/test/spec/line_spec.rb +18 -0
- data/test/spec/output_spec.rb +153 -0
- data/test/spec/parser_spec.rb +562 -0
- data/test/spec/program_spec.rb +45 -0
- data/test/spec/spec_helper.rb +15 -0
- data/test/spec/support/basic_numeric_helpers.rb +327 -0
- data/test/spec/support/basic_object_helpers.rb +22 -0
- data/test/spec/transcript_spec.rb +37 -0
- data/test/spec/transform_spec.rb +513 -0
- metadata +742 -0
@@ -0,0 +1,54 @@
|
|
1
|
+
WAR
|
2
|
+
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
THIS IS THE CARD GAME OF WAR. EACH CARD IS GIVEN BY SUIT-#
|
7
|
+
AS S-7 FOR SPADE 7. DO YOU WANT DIRECTIONS? YES
|
8
|
+
THE COMPUTER GIVES YOU AND IT A 'CARD'. THE HIGHER CARD
|
9
|
+
(NUMERICALLY) WINS. THE GAME ENDS WHEN YOU CHOOSE NOT TO
|
10
|
+
CONTINUE OR WHEN YOU HAVE FINISHED THE PACK.
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
YOU: S-9 COMPUTER: H-J
|
15
|
+
THE COMPUTER WINS!!! YOU HAVE 0 AND THE COMPUTER HAS 1
|
16
|
+
DO YOU WANT TO CONTINUE? Y
|
17
|
+
YES OR NO, PLEASE. DO YOU WANT TO CONTINUE? YES
|
18
|
+
|
19
|
+
YOU: D-9 COMPUTER: C-7
|
20
|
+
YOU WIN. YOU HAVE 1 AND THE COMPUTER HAS 1
|
21
|
+
DO YOU WANT TO CONTINUE? YES
|
22
|
+
|
23
|
+
YOU: H-10 COMPUTER: C-K
|
24
|
+
THE COMPUTER WINS!!! YOU HAVE 1 AND THE COMPUTER HAS 2
|
25
|
+
DO YOU WANT TO CONTINUE? YES
|
26
|
+
|
27
|
+
YOU: C-A COMPUTER: D-6
|
28
|
+
YOU WIN. YOU HAVE 2 AND THE COMPUTER HAS 2
|
29
|
+
DO YOU WANT TO CONTINUE? YES
|
30
|
+
|
31
|
+
YOU: H-Q COMPUTER: D-8
|
32
|
+
YOU WIN. YOU HAVE 3 AND THE COMPUTER HAS 2
|
33
|
+
DO YOU WANT TO CONTINUE? YES
|
34
|
+
|
35
|
+
YOU: H-9 COMPUTER: S-A
|
36
|
+
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 3
|
37
|
+
DO YOU WANT TO CONTINUE? YES
|
38
|
+
|
39
|
+
YOU: D-2 COMPUTER: S-3
|
40
|
+
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 4
|
41
|
+
DO YOU WANT TO CONTINUE? YES
|
42
|
+
|
43
|
+
YOU: H-2 COMPUTER: D-Q
|
44
|
+
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 5
|
45
|
+
DO YOU WANT TO CONTINUE? YES
|
46
|
+
|
47
|
+
YOU: S-Q COMPUTER: H-K
|
48
|
+
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 6
|
49
|
+
DO YOU WANT TO CONTINUE? YES
|
50
|
+
|
51
|
+
YOU: D-7 COMPUTER: C-3
|
52
|
+
YOU WIN. YOU HAVE 4 AND THE COMPUTER HAS 6
|
53
|
+
DO YOU WANT TO CONTINUE?
|
54
|
+
Error on line 560: No more input
|
@@ -0,0 +1,150 @@
|
|
1
|
+
10 PRINT TAB(32);"WEEKDAY"
|
2
|
+
20 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
|
3
|
+
30 PRINT:PRINT:PRINT
|
4
|
+
100 PRINT "WEEKDAY IS A COMPUTER DEMONSTRATION THAT"
|
5
|
+
110 PRINT"GIVES FACTS ABOUT A DATE OF INTEREST TO YOU."
|
6
|
+
120 PRINT
|
7
|
+
130 PRINT "ENTER TODAY'S DATE IN THE FORM: 3,24,1979 ";
|
8
|
+
140 INPUT M1,D1,Y1
|
9
|
+
150 REM THIS PROGRAM DETERMINES THE DAY OF THE WEEK
|
10
|
+
160 REM FOR A DATE AFTER 1582
|
11
|
+
170 DEF FNA(A)=INT(A/4)
|
12
|
+
180 DIM T(12)
|
13
|
+
190 DEF FNB(A)=INT(A/7)
|
14
|
+
200 REM SPACE OUTPUT AND READ IN INITIAL VALUES FOR MONTHS.
|
15
|
+
210 FOR I= 1 TO 12
|
16
|
+
220 READ T(I)
|
17
|
+
230 NEXT I
|
18
|
+
240 PRINT"ENTER DAY OF BIRTH (OR OTHER DAY OF INTEREST)";
|
19
|
+
250 INPUT M,D,Y
|
20
|
+
260 PRINT
|
21
|
+
270 LET I1 = INT((Y-1500)/100)
|
22
|
+
280 REM TEST FOR DATE BEFORE CURRENT CALENDAR.
|
23
|
+
290 IF Y-1582 <0 THEN 1300
|
24
|
+
300 LET A = I1*5+(I1+3)/4
|
25
|
+
310 LET I2=INT(A-FNB(A)*7)
|
26
|
+
320 LET Y2=INT(Y/100)
|
27
|
+
330 LET Y3 =INT(Y-Y2*100)
|
28
|
+
340 LET A =Y3/4+Y3+D+T(M)+I2
|
29
|
+
350 LET B=INT(A-FNB(A)*7)+1
|
30
|
+
360 IF M > 2 THEN 470
|
31
|
+
370 IF Y3 = 0 THEN 440
|
32
|
+
380 LET T1=INT(Y-FNA(Y)*4)
|
33
|
+
390 IF T1 <> 0 THEN 470
|
34
|
+
400 IF B<>0 THEN 420
|
35
|
+
410 LET B=6
|
36
|
+
420 LET B = B-1
|
37
|
+
430 GOTO 470
|
38
|
+
440 LET A = I1-1
|
39
|
+
450 LET T1=INT(A-FNA(A)*4)
|
40
|
+
460 IF T1 = 0 THEN 400
|
41
|
+
470 IF B <>0 THEN 490
|
42
|
+
480 LET B = 7
|
43
|
+
490 IF (Y1*12+M1)*31+D1<(Y*12+M)*31+D THEN 550
|
44
|
+
500 IF (Y1*12+M1)*31+D1=(Y*12+M)*31+D THEN 530
|
45
|
+
510 PRINT M;"/";D;"/";Y;" WAS A ";
|
46
|
+
520 GOTO 570
|
47
|
+
530 PRINT M;"/";D;"/";Y;" IS A ";
|
48
|
+
540 GOTO 570
|
49
|
+
550 PRINT M;"/";D;"/";Y;" WILL BE A ";
|
50
|
+
560 REM PRINT THE DAY OF THE WEEK THE DATE FALLS ON.
|
51
|
+
570 IF B <>1 THEN 590
|
52
|
+
580 PRINT "SUNDAY."
|
53
|
+
590 IF B<>2 THEN 610
|
54
|
+
600 PRINT "MONDAY."
|
55
|
+
610 IF B<>3 THEN 630
|
56
|
+
620 PRINT "TUESDAY."
|
57
|
+
630 IF B<>4 THEN 650
|
58
|
+
640 PRINT "WEDNESDAY."
|
59
|
+
650 IF B<>5 THEN 670
|
60
|
+
660 PRINT "THURSDAY."
|
61
|
+
670 IF B<>6 THEN 690
|
62
|
+
680 GOTO 1250
|
63
|
+
690 IF B<>7 THEN 710
|
64
|
+
700 PRINT "SATURDAY."
|
65
|
+
710 IF (Y1*12+M1)*31+D1=(Y*12+M)*31+D THEN 1120
|
66
|
+
720 LET I5=Y1-Y
|
67
|
+
730 PRINT
|
68
|
+
740 LET I6=M1-M
|
69
|
+
750 LET I7=D1-D
|
70
|
+
760 IF I7>=0 THEN 790
|
71
|
+
770 LET I6= I6-1
|
72
|
+
780 LET I7=I7+30
|
73
|
+
790 IF I6>=0 THEN 820
|
74
|
+
800 LET I5=I5-1
|
75
|
+
810 LET I6=I6+12
|
76
|
+
820 IF I5<0 THEN 1310
|
77
|
+
830 IF I7 <> 0 THEN 850
|
78
|
+
835 IF I6 <> 0 THEN 850
|
79
|
+
840 PRINT"***HAPPY BIRTHDAY***"
|
80
|
+
850 PRINT " "," ","YEARS","MONTHS","DAYS"
|
81
|
+
855 PRINT " "," ","-----","------","----"
|
82
|
+
860 PRINT "YOUR AGE (IF BIRTHDATE) ",I5,I6,I7
|
83
|
+
870 LET A8 = (I5*365)+(I6*30)+I7+INT(I6/2)
|
84
|
+
880 LET K5 = I5
|
85
|
+
890 LET K6 = I6
|
86
|
+
900 LET K7 = I7
|
87
|
+
910 REM CALCULATE RETIREMENT DATE.
|
88
|
+
920 LET E = Y+65
|
89
|
+
930 REM CALCULATE TIME SPENT IN THE FOLLOWING FUNCTIONS.
|
90
|
+
940 LET F = .35
|
91
|
+
950 PRINT "YOU HAVE SLEPT ",
|
92
|
+
960 GOSUB 1370
|
93
|
+
970 LET F = .17
|
94
|
+
980 PRINT "YOU HAVE EATEN ",
|
95
|
+
990 GOSUB 1370
|
96
|
+
1000 LET F = .23
|
97
|
+
1010 IF K5 > 3 THEN 1040
|
98
|
+
1020 PRINT "YOU HAVE PLAYED",
|
99
|
+
1030 GOTO 1080
|
100
|
+
1040 IF K5 > 9 THEN 1070
|
101
|
+
1050 PRINT "YOU HAVE PLAYED/STUDIED",
|
102
|
+
1060 GOTO 1080
|
103
|
+
1070 PRINT "YOU HAVE WORKED/PLAYED",
|
104
|
+
1080 GOSUB 1370
|
105
|
+
1085 GOTO 1530
|
106
|
+
1090 PRINT "YOU HAVE RELAXED ",K5,K6,K7
|
107
|
+
1100 PRINT
|
108
|
+
1110 PRINT TAB(16);"*** YOU MAY RETIRE IN";E;" ***"
|
109
|
+
1120 PRINT
|
110
|
+
1140 PRINT
|
111
|
+
1200 PRINT
|
112
|
+
1210 PRINT
|
113
|
+
1220 PRINT
|
114
|
+
1230 PRINT
|
115
|
+
1240 END
|
116
|
+
1250 IF D=13 THEN 1280
|
117
|
+
1260 PRINT "FRIDAY."
|
118
|
+
1270 GOTO 710
|
119
|
+
1280 PRINT "FRIDAY THE THIRTEENTH---BEWARE!"
|
120
|
+
1290 GOTO 710
|
121
|
+
1300 PRINT "NOT PREPARED TO GIVE DAY OF WEEK PRIOR TO MDLXXXII. "
|
122
|
+
1310 GOTO 1140
|
123
|
+
1320 REM TABLE OF VALUES FOR THE MONTHS TO BE USED IN CALCULATIONS.
|
124
|
+
1330 DATA 0, 3, 3, 6, 1, 4, 6, 2, 5, 0, 3, 5
|
125
|
+
1340 REM THIS IS THE CURRENT DATE USED IN THE CALCULATIONS.
|
126
|
+
1350 REM THIS IS THE DATE TO BE CALCULATED ON.
|
127
|
+
1360 REM CALCULATE TIME IN YEARS, MONTHS, AND DAYS
|
128
|
+
1370 LET K1=INT(F*A8)
|
129
|
+
1380 LET I5 = INT(K1/365)
|
130
|
+
1390 LET K1 = K1- (I5*365)
|
131
|
+
1400 LET I6 = INT(K1/30)
|
132
|
+
1410 LET I7 = K1 -(I6*30)
|
133
|
+
1420 LET K5 = K5-I5
|
134
|
+
1430 LET K6 =K6-I6
|
135
|
+
1440 LET K7 = K7-I7
|
136
|
+
1450 IF K7>=0 THEN 1480
|
137
|
+
1460 LET K7=K7+30
|
138
|
+
1470 LET K6=K6-1
|
139
|
+
1480 IF K6>0 THEN 1510
|
140
|
+
1490 LET K6=K6+12
|
141
|
+
1500 LET K5=K5-1
|
142
|
+
1510 PRINT I5,I6,I7
|
143
|
+
1520 RETURN
|
144
|
+
1530 IF K6=12 THEN 1550
|
145
|
+
1540 GOTO 1090
|
146
|
+
1550 LET K5=K5+1
|
147
|
+
1560 LET K6=0
|
148
|
+
1570 GOTO 1090
|
149
|
+
1580 REM
|
150
|
+
1590 END
|
@@ -0,0 +1,28 @@
|
|
1
|
+
WEEKDAY
|
2
|
+
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
WEEKDAY IS A COMPUTER DEMONSTRATION THAT
|
7
|
+
GIVES FACTS ABOUT A DATE OF INTEREST TO YOU.
|
8
|
+
|
9
|
+
ENTER TODAY'S DATE IN THE FORM: 3,24,1979 ? 3,1,2014
|
10
|
+
ENTER DAY OF BIRTH (OR OTHER DAY OF INTEREST)? 1,1,1961
|
11
|
+
|
12
|
+
1 / 1 / 1961 WAS A SUNDAY.
|
13
|
+
|
14
|
+
YEARS MONTHS DAYS
|
15
|
+
----- ------ ----
|
16
|
+
YOUR AGE (IF BIRTHDATE) 53 2 0
|
17
|
+
YOU HAVE SLEPT 18 7 12
|
18
|
+
YOU HAVE EATEN 9 0 14
|
19
|
+
YOU HAVE WORKED/PLAYED 12 2 23
|
20
|
+
YOU HAVE RELAXED 13 3 11
|
21
|
+
|
22
|
+
*** YOU MAY RETIRE IN 2026 ***
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
@@ -0,0 +1,65 @@
|
|
1
|
+
2 PRINT TAB(33);"WORD"
|
2
|
+
3 PRINT TAB(15);"CREATIVE COMPUTING MORRISTOWN, NEW JERSEY"
|
3
|
+
4 PRINT: PRINT: PRINT
|
4
|
+
5 DIM S(7),A(7),L(7),D(7),P(7)
|
5
|
+
10 PRINT "I AM THINKING OF A WORD -- YOU GUESS IT. I WILL GIVE YOU"
|
6
|
+
15 PRINT "CLUES TO HELP YOU GET IT. GOOD LUCK!!": PRINT: PRINT
|
7
|
+
20 REM
|
8
|
+
30 PRINT: PRINT: PRINT "YOU ARE STARTING A NEW GAME..."
|
9
|
+
35 RESTORE
|
10
|
+
40 READ N
|
11
|
+
50 C=INT(RND(1)*N+1)
|
12
|
+
60 FOR I=1 TO C
|
13
|
+
70 READ S$
|
14
|
+
80 NEXT I
|
15
|
+
90 G=0
|
16
|
+
95 S(0)=LEN(S$)
|
17
|
+
100 FOR I=1 TO LEN(S$): S(I)=ASC(MID$(S$,I,1)): NEXT I
|
18
|
+
110 FOR I=1 TO 5
|
19
|
+
120 A(I)=45
|
20
|
+
130 NEXT I
|
21
|
+
140 FOR J=1 TO 5
|
22
|
+
144 P(J)=0
|
23
|
+
146 NEXT J
|
24
|
+
150 PRINT "GUESS A FIVE LETTER WORD";
|
25
|
+
160 INPUT L$
|
26
|
+
170 G=G+1
|
27
|
+
172 IF S$=G$ THEN 500
|
28
|
+
173 FOR I=1 TO 7: P(I)=0: NEXT I
|
29
|
+
175 L(0)=LEN(L$)
|
30
|
+
180 FOR I=1 TO LEN(L$): L(I)=ASC(MID$(L$,I,1)): NEXT I
|
31
|
+
190 IF L(1)=63 THEN 300
|
32
|
+
200 IF L(0)<>5 THEN 400
|
33
|
+
205 M=0: Q=1
|
34
|
+
210 FOR I=1 TO 5
|
35
|
+
220 FOR J=1 TO 5
|
36
|
+
230 IF S(I)<>L(J) THEN 260
|
37
|
+
231 P(Q)=L(J)
|
38
|
+
232 Q=Q+1
|
39
|
+
233 IF I<>J THEN 250
|
40
|
+
240 A(J)=L(J)
|
41
|
+
250 M=M+1
|
42
|
+
260 NEXT J
|
43
|
+
265 NEXT I
|
44
|
+
270 A(0)=5
|
45
|
+
272 P(0)=M
|
46
|
+
275 A$="": FOR I=1 TO A(0): A$=A$+CHR$(A(I)): NEXT I
|
47
|
+
277 P$="": FOR I=1 TO P(0): P$=P$+CHR$(P(I)): NEXT I
|
48
|
+
280 PRINT "THERE WERE";M;"MATCHES AND THE COMMON LETTERS WERE...";P$
|
49
|
+
285 PRINT "FROM THE EXACT LETTER MATCHES, YOU KNOW................";A$
|
50
|
+
286 IF A$=S$ THEN 500
|
51
|
+
287 IF M>1 THEN 289
|
52
|
+
288 PRINT: PRINT "IF YOU GIVE UP, TYPE '?' FOR YOUR NEXT GUESS."
|
53
|
+
289 PRINT
|
54
|
+
290 GOTO 150
|
55
|
+
300 S$="": FOR I=1 TO 7: S$=S$+CHR$(S(I)): NEXT I
|
56
|
+
310 PRINT "THE SECRET WORD IS ";S$: PRINT
|
57
|
+
320 GOTO 30
|
58
|
+
400 PRINT "YOU MUST GUESS A 5 LETTER WORD. START AGAIN."
|
59
|
+
410 PRINT: G=G-1: GOTO 150
|
60
|
+
500 PRINT "YOU HAVE GUESSED THE WORD. IT TOOK";G;"GUESSES!": PRINT
|
61
|
+
510 INPUT "WANT TO PLAY AGAIN";Q$
|
62
|
+
520 IF Q$="YES" THEN 30
|
63
|
+
530 DATA 12,"DINKY","SMOKE","WATER","GRASS","TRAIN","MIGHT","FIRST"
|
64
|
+
540 DATA "CANDY","CHAMP","WOULD","CLUMP","DOPEY"
|
65
|
+
999 END
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
10 PRINT A(0)
|
2
|
+
20 LET A(0) = 100
|
3
|
+
30 LET A(10) = 101
|
4
|
+
40 PRINT A(0), A(10)
|
5
|
+
50 DIM A$(2, 4)
|
6
|
+
60 PRINT "'"; A$(0, 0); "'"
|
7
|
+
70 LET A$(0, 0) = "0, 0"
|
8
|
+
80 LET A$(2, 4) = "2, 4"
|
9
|
+
90 PRINT "'"; A$(0, 0); "'"
|
10
|
+
100 PRINT "'"; A$(2, 4); "'"
|
11
|
+
110 PRINT "'"; B$(9); "'"
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
10 PRINT ASC("A")
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
65
|
@@ -0,0 +1 @@
|
|
1
|
+
10 PRINT CHR$(65)
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
A
|
@@ -0,0 +1 @@
|
|
1
|
+
10 PRINT COS(3.14159265 / 8)
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
0.9238795
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
OK
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,61 @@
|
|
1
|
+
10 PRINT "NORMAL LOOP"
|
2
|
+
20 FOR I = 1 TO 2
|
3
|
+
30 PRINT I
|
4
|
+
40 NEXT I
|
5
|
+
45 PRINT I
|
6
|
+
50 PRINT "BACKWARDS"
|
7
|
+
60 FOR I = 2 TO 1 STEP -1
|
8
|
+
70 PRINT I
|
9
|
+
80 NEXT I
|
10
|
+
85 PRINT I
|
11
|
+
90 PRINT "START = END"
|
12
|
+
100 FOR I = 1 TO 1
|
13
|
+
110 PRINT I
|
14
|
+
120 NEXT I
|
15
|
+
125 PRINT I
|
16
|
+
130 PRINT "START = END, BACKWARDS"
|
17
|
+
140 FOR I = 1 TO 1 STEP -1
|
18
|
+
150 PRINT I
|
19
|
+
160 NEXT I
|
20
|
+
165 PRINT I
|
21
|
+
170 PRINT "ALREADY DONE"
|
22
|
+
180 FOR I = 1 TO 0
|
23
|
+
190 PRINT I
|
24
|
+
200 NEXT I
|
25
|
+
205 PRINT I
|
26
|
+
210 PRINT "ALREADY DONE, BACKWARDS"
|
27
|
+
220 FOR I = 0 TO 1 STEP -1
|
28
|
+
230 PRINT I
|
29
|
+
240 NEXT I
|
30
|
+
250 PRINT I
|
31
|
+
260 PRINT "NESTED"
|
32
|
+
270 FOR I = 0 TO 1
|
33
|
+
280 FOR J = 0 TO 1
|
34
|
+
290 PRINT I, J
|
35
|
+
300 NEXT J
|
36
|
+
310 NEXT I
|
37
|
+
320 PRINT "FLOAT"
|
38
|
+
330 FOR I = 0 TO 1 STEP 0.2
|
39
|
+
340 PRINT I
|
40
|
+
350 NEXT I
|
41
|
+
360 PRINT "BARE NEXT"
|
42
|
+
360 FOR I = 1 TO 2
|
43
|
+
370 PRINT I
|
44
|
+
380 NEXT
|
45
|
+
390 PRINT "NESTED, SHARED NEXT"
|
46
|
+
400 FOR I = 0 TO 1
|
47
|
+
410 FOR J = 0 TO 1
|
48
|
+
420 PRINT I, J
|
49
|
+
430 NEXT J, I
|
50
|
+
440 PRINT "OUT OF ORDER"
|
51
|
+
450 GOTO 480
|
52
|
+
460 NEXT I
|
53
|
+
470 GOTO 510
|
54
|
+
480 FOR I = 1 TO 2
|
55
|
+
490 PRINT I
|
56
|
+
500 GOTO 460
|
57
|
+
510 PRINT "RESTART"
|
58
|
+
520 FOR I = 10 TO 20
|
59
|
+
530 FOR I = 1 TO 2
|
60
|
+
540 PRINT I
|
61
|
+
550 NEXT I
|
File without changes
|
@@ -0,0 +1,46 @@
|
|
1
|
+
NORMAL LOOP
|
2
|
+
1
|
3
|
+
2
|
4
|
+
3
|
5
|
+
BACKWARDS
|
6
|
+
2
|
7
|
+
1
|
8
|
+
0
|
9
|
+
START = END
|
10
|
+
1
|
11
|
+
2
|
12
|
+
START = END, BACKWARDS
|
13
|
+
1
|
14
|
+
0
|
15
|
+
ALREADY DONE
|
16
|
+
1
|
17
|
+
2
|
18
|
+
ALREADY DONE, BACKWARDS
|
19
|
+
0
|
20
|
+
-1
|
21
|
+
NESTED
|
22
|
+
0 0
|
23
|
+
0 1
|
24
|
+
1 0
|
25
|
+
1 1
|
26
|
+
FLOAT
|
27
|
+
0
|
28
|
+
0.2
|
29
|
+
0.4
|
30
|
+
0.6
|
31
|
+
0.8
|
32
|
+
1
|
33
|
+
BARE NEXT
|
34
|
+
1
|
35
|
+
2
|
36
|
+
NESTED, SHARED NEXT
|
37
|
+
0 0
|
38
|
+
0 1
|
39
|
+
1 0
|
40
|
+
1 1
|
41
|
+
OUT OF ORDER
|
42
|
+
1
|
43
|
+
2
|
44
|
+
RESTART
|
45
|
+
1
|
46
|
+
2
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1 @@
|
|
1
|
+
LINE 30
|
File without changes
|