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
    
        metadata
    ADDED
    
    | @@ -0,0 +1,742 @@ | |
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 | 
            +
            name: basic101
         | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.1.0
         | 
| 5 | 
            +
            platform: ruby
         | 
| 6 | 
            +
            authors:
         | 
| 7 | 
            +
            - Wayne Conrad
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 | 
            +
            bindir: bin
         | 
| 10 | 
            +
            cert_chain: []
         | 
| 11 | 
            +
            date: 2014-03-02 00:00:00.000000000 Z
         | 
| 12 | 
            +
            dependencies:
         | 
| 13 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 14 | 
            +
              name: parslet
         | 
| 15 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 16 | 
            +
                requirements:
         | 
| 17 | 
            +
                - - ">="
         | 
| 18 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            +
                    version: '0'
         | 
| 20 | 
            +
              type: :runtime
         | 
| 21 | 
            +
              prerelease: false
         | 
| 22 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 | 
            +
                requirements:
         | 
| 24 | 
            +
                - - ">="
         | 
| 25 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            +
                    version: '0'
         | 
| 27 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 28 | 
            +
              name: jeweler
         | 
| 29 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 30 | 
            +
                requirements:
         | 
| 31 | 
            +
                - - ">="
         | 
| 32 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 33 | 
            +
                    version: '0'
         | 
| 34 | 
            +
              type: :development
         | 
| 35 | 
            +
              prerelease: false
         | 
| 36 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 37 | 
            +
                requirements:
         | 
| 38 | 
            +
                - - ">="
         | 
| 39 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 40 | 
            +
                    version: '0'
         | 
| 41 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 42 | 
            +
              name: rake
         | 
| 43 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 44 | 
            +
                requirements:
         | 
| 45 | 
            +
                - - ">="
         | 
| 46 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 47 | 
            +
                    version: '0'
         | 
| 48 | 
            +
              type: :development
         | 
| 49 | 
            +
              prerelease: false
         | 
| 50 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - ">="
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: '0'
         | 
| 55 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 56 | 
            +
              name: redcarpet
         | 
| 57 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 58 | 
            +
                requirements:
         | 
| 59 | 
            +
                - - ">="
         | 
| 60 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 61 | 
            +
                    version: '0'
         | 
| 62 | 
            +
              type: :development
         | 
| 63 | 
            +
              prerelease: false
         | 
| 64 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 65 | 
            +
                requirements:
         | 
| 66 | 
            +
                - - ">="
         | 
| 67 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 68 | 
            +
                    version: '0'
         | 
| 69 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 70 | 
            +
              name: rspec
         | 
| 71 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 72 | 
            +
                requirements:
         | 
| 73 | 
            +
                - - ">="
         | 
| 74 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 75 | 
            +
                    version: '0'
         | 
| 76 | 
            +
              type: :development
         | 
| 77 | 
            +
              prerelease: false
         | 
| 78 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 79 | 
            +
                requirements:
         | 
| 80 | 
            +
                - - ">="
         | 
| 81 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 82 | 
            +
                    version: '0'
         | 
| 83 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 84 | 
            +
              name: simplecov
         | 
| 85 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 86 | 
            +
                requirements:
         | 
| 87 | 
            +
                - - ">="
         | 
| 88 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 89 | 
            +
                    version: '0'
         | 
| 90 | 
            +
              type: :development
         | 
| 91 | 
            +
              prerelease: false
         | 
| 92 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 93 | 
            +
                requirements:
         | 
| 94 | 
            +
                - - ">="
         | 
| 95 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 96 | 
            +
                    version: '0'
         | 
| 97 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 98 | 
            +
              name: yard
         | 
| 99 | 
            +
              requirement: !ruby/object:Gem::Requirement
         | 
| 100 | 
            +
                requirements:
         | 
| 101 | 
            +
                - - ">="
         | 
| 102 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 103 | 
            +
                    version: '0'
         | 
| 104 | 
            +
              type: :development
         | 
| 105 | 
            +
              prerelease: false
         | 
| 106 | 
            +
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 107 | 
            +
                requirements:
         | 
| 108 | 
            +
                - - ">="
         | 
| 109 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 110 | 
            +
                    version: '0'
         | 
| 111 | 
            +
            description: basic101 is a circa 1980 BASIC interpreter written in Ruby.  It supports
         | 
| 112 | 
            +
              a modified subset of Microsoft's BASIC-80 v. 5 and runs the games published in Basic
         | 
| 113 | 
            +
              Computer Games, Microcomputer Edition by David H. Ahl
         | 
| 114 | 
            +
            email: wconrad@yagni.com
         | 
| 115 | 
            +
            executables:
         | 
| 116 | 
            +
            - basic101
         | 
| 117 | 
            +
            extensions: []
         | 
| 118 | 
            +
            extra_rdoc_files:
         | 
| 119 | 
            +
            - LICENSE.md
         | 
| 120 | 
            +
            - README.md
         | 
| 121 | 
            +
            files:
         | 
| 122 | 
            +
            - ".rspec"
         | 
| 123 | 
            +
            - ".simplecov"
         | 
| 124 | 
            +
            - ".yardopts"
         | 
| 125 | 
            +
            - Changelog.md
         | 
| 126 | 
            +
            - Gemfile
         | 
| 127 | 
            +
            - Gemfile.lock
         | 
| 128 | 
            +
            - LICENSE.md
         | 
| 129 | 
            +
            - README.md
         | 
| 130 | 
            +
            - Rakefile
         | 
| 131 | 
            +
            - VERSION
         | 
| 132 | 
            +
            - bin/basic101
         | 
| 133 | 
            +
            - lib/basic101.rb
         | 
| 134 | 
            +
            - lib/basic101/abs_function.rb
         | 
| 135 | 
            +
            - lib/basic101/argument_checker.rb
         | 
| 136 | 
            +
            - lib/basic101/arguments.rb
         | 
| 137 | 
            +
            - lib/basic101/array_reference.rb
         | 
| 138 | 
            +
            - lib/basic101/asc_function.rb
         | 
| 139 | 
            +
            - lib/basic101/basic_array.rb
         | 
| 140 | 
            +
            - lib/basic101/basic_comparisons.rb
         | 
| 141 | 
            +
            - lib/basic101/basic_float.rb
         | 
| 142 | 
            +
            - lib/basic101/basic_integer.rb
         | 
| 143 | 
            +
            - lib/basic101/basic_math.rb
         | 
| 144 | 
            +
            - lib/basic101/basic_numeric.rb
         | 
| 145 | 
            +
            - lib/basic101/basic_object.rb
         | 
| 146 | 
            +
            - lib/basic101/basic_string.rb
         | 
| 147 | 
            +
            - lib/basic101/binary_operation.rb
         | 
| 148 | 
            +
            - lib/basic101/binary_operations.rb
         | 
| 149 | 
            +
            - lib/basic101/built_in_functions.rb
         | 
| 150 | 
            +
            - lib/basic101/chr_function.rb
         | 
| 151 | 
            +
            - lib/basic101/cos_function.rb
         | 
| 152 | 
            +
            - lib/basic101/data_statement.rb
         | 
| 153 | 
            +
            - lib/basic101/define_function_statement.rb
         | 
| 154 | 
            +
            - lib/basic101/dim_statement.rb
         | 
| 155 | 
            +
            - lib/basic101/else_statement.rb
         | 
| 156 | 
            +
            - lib/basic101/end_statement.rb
         | 
| 157 | 
            +
            - lib/basic101/endif_statement.rb
         | 
| 158 | 
            +
            - lib/basic101/errors.rb
         | 
| 159 | 
            +
            - lib/basic101/exp_function.rb
         | 
| 160 | 
            +
            - lib/basic101/for_stack.rb
         | 
| 161 | 
            +
            - lib/basic101/for_statement.rb
         | 
| 162 | 
            +
            - lib/basic101/function.rb
         | 
| 163 | 
            +
            - lib/basic101/function_call.rb
         | 
| 164 | 
            +
            - lib/basic101/function_identifier.rb
         | 
| 165 | 
            +
            - lib/basic101/functions.rb
         | 
| 166 | 
            +
            - lib/basic101/gosub_statement.rb
         | 
| 167 | 
            +
            - lib/basic101/goto_statement.rb
         | 
| 168 | 
            +
            - lib/basic101/identifier.rb
         | 
| 169 | 
            +
            - lib/basic101/identity.rb
         | 
| 170 | 
            +
            - lib/basic101/if_statement.rb
         | 
| 171 | 
            +
            - lib/basic101/input.rb
         | 
| 172 | 
            +
            - lib/basic101/input_reader.rb
         | 
| 173 | 
            +
            - lib/basic101/input_statement.rb
         | 
| 174 | 
            +
            - lib/basic101/int_function.rb
         | 
| 175 | 
            +
            - lib/basic101/left_function.rb
         | 
| 176 | 
            +
            - lib/basic101/len_function.rb
         | 
| 177 | 
            +
            - lib/basic101/let_statement.rb
         | 
| 178 | 
            +
            - lib/basic101/line.rb
         | 
| 179 | 
            +
            - lib/basic101/log_function.rb
         | 
| 180 | 
            +
            - lib/basic101/main.rb
         | 
| 181 | 
            +
            - lib/basic101/mid_function.rb
         | 
| 182 | 
            +
            - lib/basic101/negate_operation.rb
         | 
| 183 | 
            +
            - lib/basic101/next_statement.rb
         | 
| 184 | 
            +
            - lib/basic101/not_operation.rb
         | 
| 185 | 
            +
            - lib/basic101/null_prompt_delimeter.rb
         | 
| 186 | 
            +
            - lib/basic101/null_transcript.rb
         | 
| 187 | 
            +
            - lib/basic101/numeric_identifier.rb
         | 
| 188 | 
            +
            - lib/basic101/on_goto_statement.rb
         | 
| 189 | 
            +
            - lib/basic101/output.rb
         | 
| 190 | 
            +
            - lib/basic101/parser.rb
         | 
| 191 | 
            +
            - lib/basic101/power_operation.rb
         | 
| 192 | 
            +
            - lib/basic101/print_comma.rb
         | 
| 193 | 
            +
            - lib/basic101/print_semicolon.rb
         | 
| 194 | 
            +
            - lib/basic101/print_statement.rb
         | 
| 195 | 
            +
            - lib/basic101/program.rb
         | 
| 196 | 
            +
            - lib/basic101/program_counter.rb
         | 
| 197 | 
            +
            - lib/basic101/prompt_delimeter.rb
         | 
| 198 | 
            +
            - lib/basic101/randomize_statement.rb
         | 
| 199 | 
            +
            - lib/basic101/read_statement.rb
         | 
| 200 | 
            +
            - lib/basic101/reference.rb
         | 
| 201 | 
            +
            - lib/basic101/remark_statement.rb
         | 
| 202 | 
            +
            - lib/basic101/restore_statement.rb
         | 
| 203 | 
            +
            - lib/basic101/return_statement.rb
         | 
| 204 | 
            +
            - lib/basic101/right_function.rb
         | 
| 205 | 
            +
            - lib/basic101/rnd_function.rb
         | 
| 206 | 
            +
            - lib/basic101/runtime.rb
         | 
| 207 | 
            +
            - lib/basic101/scalar_reference.rb
         | 
| 208 | 
            +
            - lib/basic101/sgn_function.rb
         | 
| 209 | 
            +
            - lib/basic101/sin_function.rb
         | 
| 210 | 
            +
            - lib/basic101/sqr_function.rb
         | 
| 211 | 
            +
            - lib/basic101/statement.rb
         | 
| 212 | 
            +
            - lib/basic101/stop_statement.rb
         | 
| 213 | 
            +
            - lib/basic101/str_function.rb
         | 
| 214 | 
            +
            - lib/basic101/string_identifier.rb
         | 
| 215 | 
            +
            - lib/basic101/tab.rb
         | 
| 216 | 
            +
            - lib/basic101/tab_function.rb
         | 
| 217 | 
            +
            - lib/basic101/tan_function.rb
         | 
| 218 | 
            +
            - lib/basic101/transcript.rb
         | 
| 219 | 
            +
            - lib/basic101/transform.rb
         | 
| 220 | 
            +
            - lib/basic101/user_defined_function.rb
         | 
| 221 | 
            +
            - lib/basic101/val_function.rb
         | 
| 222 | 
            +
            - rake_tasks/default.rake
         | 
| 223 | 
            +
            - rake_tasks/integration.rake
         | 
| 224 | 
            +
            - rake_tasks/jeweler.rake
         | 
| 225 | 
            +
            - rake_tasks/spec.rake
         | 
| 226 | 
            +
            - rake_tasks/test.rake
         | 
| 227 | 
            +
            - rake_tasks/yard.rake
         | 
| 228 | 
            +
            - test/integration/arguments.rb
         | 
| 229 | 
            +
            - test/integration/errors.rb
         | 
| 230 | 
            +
            - test/integration/integration_test.rb
         | 
| 231 | 
            +
            - test/integration/main.rb
         | 
| 232 | 
            +
            - test/integration/output_file.rb
         | 
| 233 | 
            +
            - test/integration/test.rb
         | 
| 234 | 
            +
            - test/integration/tests/basic_computer_games/23-match.bas
         | 
| 235 | 
            +
            - test/integration/tests/basic_computer_games/23-match.input
         | 
| 236 | 
            +
            - test/integration/tests/basic_computer_games/23-match.output
         | 
| 237 | 
            +
            - test/integration/tests/basic_computer_games/3dplot.bas
         | 
| 238 | 
            +
            - test/integration/tests/basic_computer_games/3dplot.input
         | 
| 239 | 
            +
            - test/integration/tests/basic_computer_games/3dplot.output
         | 
| 240 | 
            +
            - test/integration/tests/basic_computer_games/aceyducy.bas
         | 
| 241 | 
            +
            - test/integration/tests/basic_computer_games/aceyducy.input
         | 
| 242 | 
            +
            - test/integration/tests/basic_computer_games/aceyducy.output
         | 
| 243 | 
            +
            - test/integration/tests/basic_computer_games/amazing.bas
         | 
| 244 | 
            +
            - test/integration/tests/basic_computer_games/amazing.input
         | 
| 245 | 
            +
            - test/integration/tests/basic_computer_games/amazing.output
         | 
| 246 | 
            +
            - test/integration/tests/basic_computer_games/animal.bas
         | 
| 247 | 
            +
            - test/integration/tests/basic_computer_games/animal.input
         | 
| 248 | 
            +
            - test/integration/tests/basic_computer_games/animal.output
         | 
| 249 | 
            +
            - test/integration/tests/basic_computer_games/awari.bas
         | 
| 250 | 
            +
            - test/integration/tests/basic_computer_games/awari.input
         | 
| 251 | 
            +
            - test/integration/tests/basic_computer_games/awari.output
         | 
| 252 | 
            +
            - test/integration/tests/basic_computer_games/bagels.bas
         | 
| 253 | 
            +
            - test/integration/tests/basic_computer_games/bagels.input
         | 
| 254 | 
            +
            - test/integration/tests/basic_computer_games/bagels.output
         | 
| 255 | 
            +
            - test/integration/tests/basic_computer_games/banner.bas
         | 
| 256 | 
            +
            - test/integration/tests/basic_computer_games/banner.input
         | 
| 257 | 
            +
            - test/integration/tests/basic_computer_games/banner.output
         | 
| 258 | 
            +
            - test/integration/tests/basic_computer_games/basketbl.bas
         | 
| 259 | 
            +
            - test/integration/tests/basic_computer_games/basketbl.input
         | 
| 260 | 
            +
            - test/integration/tests/basic_computer_games/basketbl.output
         | 
| 261 | 
            +
            - test/integration/tests/basic_computer_games/batnum.bas
         | 
| 262 | 
            +
            - test/integration/tests/basic_computer_games/batnum.input
         | 
| 263 | 
            +
            - test/integration/tests/basic_computer_games/batnum.output
         | 
| 264 | 
            +
            - test/integration/tests/basic_computer_games/battle.bas
         | 
| 265 | 
            +
            - test/integration/tests/basic_computer_games/battle.input
         | 
| 266 | 
            +
            - test/integration/tests/basic_computer_games/battle.output
         | 
| 267 | 
            +
            - test/integration/tests/basic_computer_games/blackjck.bas
         | 
| 268 | 
            +
            - test/integration/tests/basic_computer_games/blackjck.input
         | 
| 269 | 
            +
            - test/integration/tests/basic_computer_games/blackjck.output
         | 
| 270 | 
            +
            - test/integration/tests/basic_computer_games/bombard.bas
         | 
| 271 | 
            +
            - test/integration/tests/basic_computer_games/bombard.input
         | 
| 272 | 
            +
            - test/integration/tests/basic_computer_games/bombard.output
         | 
| 273 | 
            +
            - test/integration/tests/basic_computer_games/bounce.bas
         | 
| 274 | 
            +
            - test/integration/tests/basic_computer_games/bounce.input
         | 
| 275 | 
            +
            - test/integration/tests/basic_computer_games/bounce.output
         | 
| 276 | 
            +
            - test/integration/tests/basic_computer_games/bowling.bas
         | 
| 277 | 
            +
            - test/integration/tests/basic_computer_games/bowling.input
         | 
| 278 | 
            +
            - test/integration/tests/basic_computer_games/bowling.output
         | 
| 279 | 
            +
            - test/integration/tests/basic_computer_games/boxing.bas
         | 
| 280 | 
            +
            - test/integration/tests/basic_computer_games/boxing.input
         | 
| 281 | 
            +
            - test/integration/tests/basic_computer_games/boxing.output
         | 
| 282 | 
            +
            - test/integration/tests/basic_computer_games/bug.bas
         | 
| 283 | 
            +
            - test/integration/tests/basic_computer_games/bug.input
         | 
| 284 | 
            +
            - test/integration/tests/basic_computer_games/bug.output
         | 
| 285 | 
            +
            - test/integration/tests/basic_computer_games/bullfght.bas
         | 
| 286 | 
            +
            - test/integration/tests/basic_computer_games/bullfght.input
         | 
| 287 | 
            +
            - test/integration/tests/basic_computer_games/bullfght.output
         | 
| 288 | 
            +
            - test/integration/tests/basic_computer_games/bullseye.bas
         | 
| 289 | 
            +
            - test/integration/tests/basic_computer_games/bullseye.input
         | 
| 290 | 
            +
            - test/integration/tests/basic_computer_games/bullseye.output
         | 
| 291 | 
            +
            - test/integration/tests/basic_computer_games/bunny.bas
         | 
| 292 | 
            +
            - test/integration/tests/basic_computer_games/bunny.input
         | 
| 293 | 
            +
            - test/integration/tests/basic_computer_games/bunny.output
         | 
| 294 | 
            +
            - test/integration/tests/basic_computer_games/buzzword.bas
         | 
| 295 | 
            +
            - test/integration/tests/basic_computer_games/buzzword.input
         | 
| 296 | 
            +
            - test/integration/tests/basic_computer_games/buzzword.output
         | 
| 297 | 
            +
            - test/integration/tests/basic_computer_games/calendar.bas
         | 
| 298 | 
            +
            - test/integration/tests/basic_computer_games/calendar.input
         | 
| 299 | 
            +
            - test/integration/tests/basic_computer_games/calendar.output
         | 
| 300 | 
            +
            - test/integration/tests/basic_computer_games/change.bas
         | 
| 301 | 
            +
            - test/integration/tests/basic_computer_games/change.input
         | 
| 302 | 
            +
            - test/integration/tests/basic_computer_games/change.output
         | 
| 303 | 
            +
            - test/integration/tests/basic_computer_games/checkers.bas
         | 
| 304 | 
            +
            - test/integration/tests/basic_computer_games/checkers.input
         | 
| 305 | 
            +
            - test/integration/tests/basic_computer_games/checkers.output
         | 
| 306 | 
            +
            - test/integration/tests/basic_computer_games/chemist.bas
         | 
| 307 | 
            +
            - test/integration/tests/basic_computer_games/chemist.input
         | 
| 308 | 
            +
            - test/integration/tests/basic_computer_games/chemist.output
         | 
| 309 | 
            +
            - test/integration/tests/basic_computer_games/chief.bas
         | 
| 310 | 
            +
            - test/integration/tests/basic_computer_games/chief.input
         | 
| 311 | 
            +
            - test/integration/tests/basic_computer_games/chief.output
         | 
| 312 | 
            +
            - test/integration/tests/basic_computer_games/chomp.bas
         | 
| 313 | 
            +
            - test/integration/tests/basic_computer_games/chomp.input
         | 
| 314 | 
            +
            - test/integration/tests/basic_computer_games/chomp.output
         | 
| 315 | 
            +
            - test/integration/tests/basic_computer_games/combat.bas
         | 
| 316 | 
            +
            - test/integration/tests/basic_computer_games/combat.input
         | 
| 317 | 
            +
            - test/integration/tests/basic_computer_games/combat.output
         | 
| 318 | 
            +
            - test/integration/tests/basic_computer_games/craps.bas
         | 
| 319 | 
            +
            - test/integration/tests/basic_computer_games/craps.input
         | 
| 320 | 
            +
            - test/integration/tests/basic_computer_games/craps.output
         | 
| 321 | 
            +
            - test/integration/tests/basic_computer_games/cube.bas
         | 
| 322 | 
            +
            - test/integration/tests/basic_computer_games/cube.input
         | 
| 323 | 
            +
            - test/integration/tests/basic_computer_games/cube.output
         | 
| 324 | 
            +
            - test/integration/tests/basic_computer_games/depthchg.bas
         | 
| 325 | 
            +
            - test/integration/tests/basic_computer_games/depthchg.input
         | 
| 326 | 
            +
            - test/integration/tests/basic_computer_games/depthchg.output
         | 
| 327 | 
            +
            - test/integration/tests/basic_computer_games/diamond.bas
         | 
| 328 | 
            +
            - test/integration/tests/basic_computer_games/diamond.input
         | 
| 329 | 
            +
            - test/integration/tests/basic_computer_games/diamond.output
         | 
| 330 | 
            +
            - test/integration/tests/basic_computer_games/dice.bas
         | 
| 331 | 
            +
            - test/integration/tests/basic_computer_games/dice.input
         | 
| 332 | 
            +
            - test/integration/tests/basic_computer_games/dice.output
         | 
| 333 | 
            +
            - test/integration/tests/basic_computer_games/digits.bas
         | 
| 334 | 
            +
            - test/integration/tests/basic_computer_games/digits.input
         | 
| 335 | 
            +
            - test/integration/tests/basic_computer_games/digits.output
         | 
| 336 | 
            +
            - test/integration/tests/basic_computer_games/evenwin1.bas
         | 
| 337 | 
            +
            - test/integration/tests/basic_computer_games/evenwin1.input
         | 
| 338 | 
            +
            - test/integration/tests/basic_computer_games/evenwin1.output
         | 
| 339 | 
            +
            - test/integration/tests/basic_computer_games/evenwin2.bas
         | 
| 340 | 
            +
            - test/integration/tests/basic_computer_games/evenwin2.input
         | 
| 341 | 
            +
            - test/integration/tests/basic_computer_games/evenwin2.output
         | 
| 342 | 
            +
            - test/integration/tests/basic_computer_games/flipflop.bas
         | 
| 343 | 
            +
            - test/integration/tests/basic_computer_games/flipflop.input
         | 
| 344 | 
            +
            - test/integration/tests/basic_computer_games/flipflop.output
         | 
| 345 | 
            +
            - test/integration/tests/basic_computer_games/footbal1.bas
         | 
| 346 | 
            +
            - test/integration/tests/basic_computer_games/footbal1.input
         | 
| 347 | 
            +
            - test/integration/tests/basic_computer_games/footbal1.output
         | 
| 348 | 
            +
            - test/integration/tests/basic_computer_games/footbal2.bas
         | 
| 349 | 
            +
            - test/integration/tests/basic_computer_games/footbal2.input
         | 
| 350 | 
            +
            - test/integration/tests/basic_computer_games/footbal2.output
         | 
| 351 | 
            +
            - test/integration/tests/basic_computer_games/furtradr.bas
         | 
| 352 | 
            +
            - test/integration/tests/basic_computer_games/furtradr.input
         | 
| 353 | 
            +
            - test/integration/tests/basic_computer_games/furtradr.output
         | 
| 354 | 
            +
            - test/integration/tests/basic_computer_games/golf.bas
         | 
| 355 | 
            +
            - test/integration/tests/basic_computer_games/golf.input
         | 
| 356 | 
            +
            - test/integration/tests/basic_computer_games/golf.output
         | 
| 357 | 
            +
            - test/integration/tests/basic_computer_games/gomoko.bas
         | 
| 358 | 
            +
            - test/integration/tests/basic_computer_games/gomoko.input
         | 
| 359 | 
            +
            - test/integration/tests/basic_computer_games/gomoko.output
         | 
| 360 | 
            +
            - test/integration/tests/basic_computer_games/guess.bas
         | 
| 361 | 
            +
            - test/integration/tests/basic_computer_games/guess.input
         | 
| 362 | 
            +
            - test/integration/tests/basic_computer_games/guess.output
         | 
| 363 | 
            +
            - test/integration/tests/basic_computer_games/gunner.bas
         | 
| 364 | 
            +
            - test/integration/tests/basic_computer_games/gunner.input
         | 
| 365 | 
            +
            - test/integration/tests/basic_computer_games/gunner.output
         | 
| 366 | 
            +
            - test/integration/tests/basic_computer_games/hamurabi.bas
         | 
| 367 | 
            +
            - test/integration/tests/basic_computer_games/hamurabi.input
         | 
| 368 | 
            +
            - test/integration/tests/basic_computer_games/hamurabi.output
         | 
| 369 | 
            +
            - test/integration/tests/basic_computer_games/hangman.bas
         | 
| 370 | 
            +
            - test/integration/tests/basic_computer_games/hangman.input
         | 
| 371 | 
            +
            - test/integration/tests/basic_computer_games/hangman.output
         | 
| 372 | 
            +
            - test/integration/tests/basic_computer_games/hello.bas
         | 
| 373 | 
            +
            - test/integration/tests/basic_computer_games/hello.input
         | 
| 374 | 
            +
            - test/integration/tests/basic_computer_games/hello.output
         | 
| 375 | 
            +
            - test/integration/tests/basic_computer_games/hexapawn.bas
         | 
| 376 | 
            +
            - test/integration/tests/basic_computer_games/hexapawn.input
         | 
| 377 | 
            +
            - test/integration/tests/basic_computer_games/hexapawn.output
         | 
| 378 | 
            +
            - test/integration/tests/basic_computer_games/hi-q.bas
         | 
| 379 | 
            +
            - test/integration/tests/basic_computer_games/hi-q.input
         | 
| 380 | 
            +
            - test/integration/tests/basic_computer_games/hi-q.output
         | 
| 381 | 
            +
            - test/integration/tests/basic_computer_games/hilo.bas
         | 
| 382 | 
            +
            - test/integration/tests/basic_computer_games/hilo.input
         | 
| 383 | 
            +
            - test/integration/tests/basic_computer_games/hilo.output
         | 
| 384 | 
            +
            - test/integration/tests/basic_computer_games/hockey.bas
         | 
| 385 | 
            +
            - test/integration/tests/basic_computer_games/hockey.input
         | 
| 386 | 
            +
            - test/integration/tests/basic_computer_games/hockey.output
         | 
| 387 | 
            +
            - test/integration/tests/basic_computer_games/horsrace.bas
         | 
| 388 | 
            +
            - test/integration/tests/basic_computer_games/horsrace.input
         | 
| 389 | 
            +
            - test/integration/tests/basic_computer_games/horsrace.output
         | 
| 390 | 
            +
            - test/integration/tests/basic_computer_games/hurkle.bas
         | 
| 391 | 
            +
            - test/integration/tests/basic_computer_games/hurkle.input
         | 
| 392 | 
            +
            - test/integration/tests/basic_computer_games/hurkle.output
         | 
| 393 | 
            +
            - test/integration/tests/basic_computer_games/kinema.bas
         | 
| 394 | 
            +
            - test/integration/tests/basic_computer_games/kinema.input
         | 
| 395 | 
            +
            - test/integration/tests/basic_computer_games/kinema.output
         | 
| 396 | 
            +
            - test/integration/tests/basic_computer_games/king.bas
         | 
| 397 | 
            +
            - test/integration/tests/basic_computer_games/king.input
         | 
| 398 | 
            +
            - test/integration/tests/basic_computer_games/king.output
         | 
| 399 | 
            +
            - test/integration/tests/basic_computer_games/lem.bas
         | 
| 400 | 
            +
            - test/integration/tests/basic_computer_games/lem.input
         | 
| 401 | 
            +
            - test/integration/tests/basic_computer_games/lem.output
         | 
| 402 | 
            +
            - test/integration/tests/basic_computer_games/letter.bas
         | 
| 403 | 
            +
            - test/integration/tests/basic_computer_games/letter.input
         | 
| 404 | 
            +
            - test/integration/tests/basic_computer_games/letter.output
         | 
| 405 | 
            +
            - test/integration/tests/basic_computer_games/life.bas
         | 
| 406 | 
            +
            - test/integration/tests/basic_computer_games/life.input
         | 
| 407 | 
            +
            - test/integration/tests/basic_computer_games/life.options
         | 
| 408 | 
            +
            - test/integration/tests/basic_computer_games/life.output
         | 
| 409 | 
            +
            - test/integration/tests/basic_computer_games/life2.bas
         | 
| 410 | 
            +
            - test/integration/tests/basic_computer_games/life2.input
         | 
| 411 | 
            +
            - test/integration/tests/basic_computer_games/life2.output
         | 
| 412 | 
            +
            - test/integration/tests/basic_computer_games/litquiz.bas
         | 
| 413 | 
            +
            - test/integration/tests/basic_computer_games/litquiz.input
         | 
| 414 | 
            +
            - test/integration/tests/basic_computer_games/litquiz.output
         | 
| 415 | 
            +
            - test/integration/tests/basic_computer_games/love.bas
         | 
| 416 | 
            +
            - test/integration/tests/basic_computer_games/love.input
         | 
| 417 | 
            +
            - test/integration/tests/basic_computer_games/love.output
         | 
| 418 | 
            +
            - test/integration/tests/basic_computer_games/lunar.bas
         | 
| 419 | 
            +
            - test/integration/tests/basic_computer_games/lunar.input
         | 
| 420 | 
            +
            - test/integration/tests/basic_computer_games/lunar.output
         | 
| 421 | 
            +
            - test/integration/tests/basic_computer_games/mastrmnd.bas
         | 
| 422 | 
            +
            - test/integration/tests/basic_computer_games/mastrmnd.input
         | 
| 423 | 
            +
            - test/integration/tests/basic_computer_games/mastrmnd.output
         | 
| 424 | 
            +
            - test/integration/tests/basic_computer_games/mathdice.bas
         | 
| 425 | 
            +
            - test/integration/tests/basic_computer_games/mathdice.input
         | 
| 426 | 
            +
            - test/integration/tests/basic_computer_games/mathdice.output
         | 
| 427 | 
            +
            - test/integration/tests/basic_computer_games/mugwump.bas
         | 
| 428 | 
            +
            - test/integration/tests/basic_computer_games/mugwump.input
         | 
| 429 | 
            +
            - test/integration/tests/basic_computer_games/mugwump.output
         | 
| 430 | 
            +
            - test/integration/tests/basic_computer_games/name.bas
         | 
| 431 | 
            +
            - test/integration/tests/basic_computer_games/name.input
         | 
| 432 | 
            +
            - test/integration/tests/basic_computer_games/name.output
         | 
| 433 | 
            +
            - test/integration/tests/basic_computer_games/nicoma.bas
         | 
| 434 | 
            +
            - test/integration/tests/basic_computer_games/nicoma.input
         | 
| 435 | 
            +
            - test/integration/tests/basic_computer_games/nicoma.output
         | 
| 436 | 
            +
            - test/integration/tests/basic_computer_games/nim.bas
         | 
| 437 | 
            +
            - test/integration/tests/basic_computer_games/nim.input
         | 
| 438 | 
            +
            - test/integration/tests/basic_computer_games/nim.output
         | 
| 439 | 
            +
            - test/integration/tests/basic_computer_games/number.bas
         | 
| 440 | 
            +
            - test/integration/tests/basic_computer_games/number.input
         | 
| 441 | 
            +
            - test/integration/tests/basic_computer_games/number.output
         | 
| 442 | 
            +
            - test/integration/tests/basic_computer_games/onecheck.bas
         | 
| 443 | 
            +
            - test/integration/tests/basic_computer_games/onecheck.input
         | 
| 444 | 
            +
            - test/integration/tests/basic_computer_games/onecheck.output
         | 
| 445 | 
            +
            - test/integration/tests/basic_computer_games/orbit.bas
         | 
| 446 | 
            +
            - test/integration/tests/basic_computer_games/orbit.input
         | 
| 447 | 
            +
            - test/integration/tests/basic_computer_games/orbit.output
         | 
| 448 | 
            +
            - test/integration/tests/basic_computer_games/pizza.bas
         | 
| 449 | 
            +
            - test/integration/tests/basic_computer_games/pizza.input
         | 
| 450 | 
            +
            - test/integration/tests/basic_computer_games/pizza.output
         | 
| 451 | 
            +
            - test/integration/tests/basic_computer_games/poetry.bas
         | 
| 452 | 
            +
            - test/integration/tests/basic_computer_games/poetry.input
         | 
| 453 | 
            +
            - test/integration/tests/basic_computer_games/poetry.options
         | 
| 454 | 
            +
            - test/integration/tests/basic_computer_games/poetry.output
         | 
| 455 | 
            +
            - test/integration/tests/basic_computer_games/poker.bas
         | 
| 456 | 
            +
            - test/integration/tests/basic_computer_games/poker.input
         | 
| 457 | 
            +
            - test/integration/tests/basic_computer_games/poker.output
         | 
| 458 | 
            +
            - test/integration/tests/basic_computer_games/queen.bas
         | 
| 459 | 
            +
            - test/integration/tests/basic_computer_games/queen.input
         | 
| 460 | 
            +
            - test/integration/tests/basic_computer_games/queen.output
         | 
| 461 | 
            +
            - test/integration/tests/basic_computer_games/reverse.bas
         | 
| 462 | 
            +
            - test/integration/tests/basic_computer_games/reverse.input
         | 
| 463 | 
            +
            - test/integration/tests/basic_computer_games/reverse.output
         | 
| 464 | 
            +
            - test/integration/tests/basic_computer_games/rocket.bas
         | 
| 465 | 
            +
            - test/integration/tests/basic_computer_games/rocket.input
         | 
| 466 | 
            +
            - test/integration/tests/basic_computer_games/rocket.output
         | 
| 467 | 
            +
            - test/integration/tests/basic_computer_games/rocksp.bas
         | 
| 468 | 
            +
            - test/integration/tests/basic_computer_games/rocksp.input
         | 
| 469 | 
            +
            - test/integration/tests/basic_computer_games/rocksp.output
         | 
| 470 | 
            +
            - test/integration/tests/basic_computer_games/roulette.bas
         | 
| 471 | 
            +
            - test/integration/tests/basic_computer_games/roulette.input
         | 
| 472 | 
            +
            - test/integration/tests/basic_computer_games/roulette.output
         | 
| 473 | 
            +
            - test/integration/tests/basic_computer_games/rusrou.bas
         | 
| 474 | 
            +
            - test/integration/tests/basic_computer_games/rusrou.input
         | 
| 475 | 
            +
            - test/integration/tests/basic_computer_games/rusrou.output
         | 
| 476 | 
            +
            - test/integration/tests/basic_computer_games/salvo.bas
         | 
| 477 | 
            +
            - test/integration/tests/basic_computer_games/salvo.input
         | 
| 478 | 
            +
            - test/integration/tests/basic_computer_games/salvo.output
         | 
| 479 | 
            +
            - test/integration/tests/basic_computer_games/sinewave.bas
         | 
| 480 | 
            +
            - test/integration/tests/basic_computer_games/sinewave.input
         | 
| 481 | 
            +
            - test/integration/tests/basic_computer_games/sinewave.output
         | 
| 482 | 
            +
            - test/integration/tests/basic_computer_games/slalom.bas
         | 
| 483 | 
            +
            - test/integration/tests/basic_computer_games/slalom.input
         | 
| 484 | 
            +
            - test/integration/tests/basic_computer_games/slalom.output
         | 
| 485 | 
            +
            - test/integration/tests/basic_computer_games/slots.bas
         | 
| 486 | 
            +
            - test/integration/tests/basic_computer_games/slots.input
         | 
| 487 | 
            +
            - test/integration/tests/basic_computer_games/slots.output
         | 
| 488 | 
            +
            - test/integration/tests/basic_computer_games/splat.bas
         | 
| 489 | 
            +
            - test/integration/tests/basic_computer_games/splat.input
         | 
| 490 | 
            +
            - test/integration/tests/basic_computer_games/splat.output
         | 
| 491 | 
            +
            - test/integration/tests/basic_computer_games/stars.bas
         | 
| 492 | 
            +
            - test/integration/tests/basic_computer_games/stars.input
         | 
| 493 | 
            +
            - test/integration/tests/basic_computer_games/stars.output
         | 
| 494 | 
            +
            - test/integration/tests/basic_computer_games/stock.bas
         | 
| 495 | 
            +
            - test/integration/tests/basic_computer_games/stock.input
         | 
| 496 | 
            +
            - test/integration/tests/basic_computer_games/stock.output
         | 
| 497 | 
            +
            - test/integration/tests/basic_computer_games/superstartrek.bas
         | 
| 498 | 
            +
            - test/integration/tests/basic_computer_games/superstartrek.input
         | 
| 499 | 
            +
            - test/integration/tests/basic_computer_games/superstartrek.output
         | 
| 500 | 
            +
            - test/integration/tests/basic_computer_games/superstartrekins.bas
         | 
| 501 | 
            +
            - test/integration/tests/basic_computer_games/superstartrekins.input
         | 
| 502 | 
            +
            - test/integration/tests/basic_computer_games/superstartrekins.output
         | 
| 503 | 
            +
            - test/integration/tests/basic_computer_games/synonym.bas
         | 
| 504 | 
            +
            - test/integration/tests/basic_computer_games/synonym.input
         | 
| 505 | 
            +
            - test/integration/tests/basic_computer_games/synonym.output
         | 
| 506 | 
            +
            - test/integration/tests/basic_computer_games/target.bas
         | 
| 507 | 
            +
            - test/integration/tests/basic_computer_games/target.input
         | 
| 508 | 
            +
            - test/integration/tests/basic_computer_games/target.output
         | 
| 509 | 
            +
            - test/integration/tests/basic_computer_games/tictac1.bas
         | 
| 510 | 
            +
            - test/integration/tests/basic_computer_games/tictac1.input
         | 
| 511 | 
            +
            - test/integration/tests/basic_computer_games/tictac1.output
         | 
| 512 | 
            +
            - test/integration/tests/basic_computer_games/tictac2.bas
         | 
| 513 | 
            +
            - test/integration/tests/basic_computer_games/tictac2.input
         | 
| 514 | 
            +
            - test/integration/tests/basic_computer_games/tictac2.output
         | 
| 515 | 
            +
            - test/integration/tests/basic_computer_games/towers.bas
         | 
| 516 | 
            +
            - test/integration/tests/basic_computer_games/towers.input
         | 
| 517 | 
            +
            - test/integration/tests/basic_computer_games/towers.output
         | 
| 518 | 
            +
            - test/integration/tests/basic_computer_games/train.bas
         | 
| 519 | 
            +
            - test/integration/tests/basic_computer_games/train.input
         | 
| 520 | 
            +
            - test/integration/tests/basic_computer_games/train.output
         | 
| 521 | 
            +
            - test/integration/tests/basic_computer_games/trap.bas
         | 
| 522 | 
            +
            - test/integration/tests/basic_computer_games/trap.input
         | 
| 523 | 
            +
            - test/integration/tests/basic_computer_games/trap.output
         | 
| 524 | 
            +
            - test/integration/tests/basic_computer_games/war.bas
         | 
| 525 | 
            +
            - test/integration/tests/basic_computer_games/war.input
         | 
| 526 | 
            +
            - test/integration/tests/basic_computer_games/war.output
         | 
| 527 | 
            +
            - test/integration/tests/basic_computer_games/weekday.bas
         | 
| 528 | 
            +
            - test/integration/tests/basic_computer_games/weekday.input
         | 
| 529 | 
            +
            - test/integration/tests/basic_computer_games/weekday.output
         | 
| 530 | 
            +
            - test/integration/tests/basic_computer_games/word.bas
         | 
| 531 | 
            +
            - test/integration/tests/basic_computer_games/word.input
         | 
| 532 | 
            +
            - test/integration/tests/basic_computer_games/word.output
         | 
| 533 | 
            +
            - test/integration/tests/fast/abs.bas
         | 
| 534 | 
            +
            - test/integration/tests/fast/abs.input
         | 
| 535 | 
            +
            - test/integration/tests/fast/abs.output
         | 
| 536 | 
            +
            - test/integration/tests/fast/add.bas
         | 
| 537 | 
            +
            - test/integration/tests/fast/add.input
         | 
| 538 | 
            +
            - test/integration/tests/fast/add.output
         | 
| 539 | 
            +
            - test/integration/tests/fast/and.bas
         | 
| 540 | 
            +
            - test/integration/tests/fast/and.input
         | 
| 541 | 
            +
            - test/integration/tests/fast/and.output
         | 
| 542 | 
            +
            - test/integration/tests/fast/array.bas
         | 
| 543 | 
            +
            - test/integration/tests/fast/array.input
         | 
| 544 | 
            +
            - test/integration/tests/fast/array.output
         | 
| 545 | 
            +
            - test/integration/tests/fast/asc.bas
         | 
| 546 | 
            +
            - test/integration/tests/fast/asc.input
         | 
| 547 | 
            +
            - test/integration/tests/fast/asc.output
         | 
| 548 | 
            +
            - test/integration/tests/fast/chr.bas
         | 
| 549 | 
            +
            - test/integration/tests/fast/chr.input
         | 
| 550 | 
            +
            - test/integration/tests/fast/chr.output
         | 
| 551 | 
            +
            - test/integration/tests/fast/cos.bas
         | 
| 552 | 
            +
            - test/integration/tests/fast/cos.input
         | 
| 553 | 
            +
            - test/integration/tests/fast/cos.output
         | 
| 554 | 
            +
            - test/integration/tests/fast/def_fn.bas
         | 
| 555 | 
            +
            - test/integration/tests/fast/def_fn.input
         | 
| 556 | 
            +
            - test/integration/tests/fast/def_fn.output
         | 
| 557 | 
            +
            - test/integration/tests/fast/divide.bas
         | 
| 558 | 
            +
            - test/integration/tests/fast/divide.input
         | 
| 559 | 
            +
            - test/integration/tests/fast/divide.output
         | 
| 560 | 
            +
            - test/integration/tests/fast/end.bas
         | 
| 561 | 
            +
            - test/integration/tests/fast/end.input
         | 
| 562 | 
            +
            - test/integration/tests/fast/end.output
         | 
| 563 | 
            +
            - test/integration/tests/fast/eq.bas
         | 
| 564 | 
            +
            - test/integration/tests/fast/eq.input
         | 
| 565 | 
            +
            - test/integration/tests/fast/eq.output
         | 
| 566 | 
            +
            - test/integration/tests/fast/exp.bas
         | 
| 567 | 
            +
            - test/integration/tests/fast/exp.input
         | 
| 568 | 
            +
            - test/integration/tests/fast/exp.output
         | 
| 569 | 
            +
            - test/integration/tests/fast/float.bas
         | 
| 570 | 
            +
            - test/integration/tests/fast/float.input
         | 
| 571 | 
            +
            - test/integration/tests/fast/float.output
         | 
| 572 | 
            +
            - test/integration/tests/fast/for_next.bas
         | 
| 573 | 
            +
            - test/integration/tests/fast/for_next.input
         | 
| 574 | 
            +
            - test/integration/tests/fast/for_next.output
         | 
| 575 | 
            +
            - test/integration/tests/fast/ge.bas
         | 
| 576 | 
            +
            - test/integration/tests/fast/ge.input
         | 
| 577 | 
            +
            - test/integration/tests/fast/ge.output
         | 
| 578 | 
            +
            - test/integration/tests/fast/gosub_return.bas
         | 
| 579 | 
            +
            - test/integration/tests/fast/gosub_return.input
         | 
| 580 | 
            +
            - test/integration/tests/fast/gosub_return.output
         | 
| 581 | 
            +
            - test/integration/tests/fast/goto.bas
         | 
| 582 | 
            +
            - test/integration/tests/fast/goto.input
         | 
| 583 | 
            +
            - test/integration/tests/fast/goto.output
         | 
| 584 | 
            +
            - test/integration/tests/fast/gt.bas
         | 
| 585 | 
            +
            - test/integration/tests/fast/gt.input
         | 
| 586 | 
            +
            - test/integration/tests/fast/gt.output
         | 
| 587 | 
            +
            - test/integration/tests/fast/if.bas
         | 
| 588 | 
            +
            - test/integration/tests/fast/if.input
         | 
| 589 | 
            +
            - test/integration/tests/fast/if.output
         | 
| 590 | 
            +
            - test/integration/tests/fast/input.bas
         | 
| 591 | 
            +
            - test/integration/tests/fast/input.input
         | 
| 592 | 
            +
            - test/integration/tests/fast/input.output
         | 
| 593 | 
            +
            - test/integration/tests/fast/int.bas
         | 
| 594 | 
            +
            - test/integration/tests/fast/int.input
         | 
| 595 | 
            +
            - test/integration/tests/fast/int.output
         | 
| 596 | 
            +
            - test/integration/tests/fast/integer_plus_string.bas
         | 
| 597 | 
            +
            - test/integration/tests/fast/integer_plus_string.input
         | 
| 598 | 
            +
            - test/integration/tests/fast/integer_plus_string.output
         | 
| 599 | 
            +
            - test/integration/tests/fast/invalid_argument.bas
         | 
| 600 | 
            +
            - test/integration/tests/fast/invalid_argument.input
         | 
| 601 | 
            +
            - test/integration/tests/fast/invalid_argument.output
         | 
| 602 | 
            +
            - test/integration/tests/fast/le.bas
         | 
| 603 | 
            +
            - test/integration/tests/fast/le.input
         | 
| 604 | 
            +
            - test/integration/tests/fast/le.output
         | 
| 605 | 
            +
            - test/integration/tests/fast/left.bas
         | 
| 606 | 
            +
            - test/integration/tests/fast/left.input
         | 
| 607 | 
            +
            - test/integration/tests/fast/left.output
         | 
| 608 | 
            +
            - test/integration/tests/fast/len.bas
         | 
| 609 | 
            +
            - test/integration/tests/fast/len.input
         | 
| 610 | 
            +
            - test/integration/tests/fast/len.output
         | 
| 611 | 
            +
            - test/integration/tests/fast/let.bas
         | 
| 612 | 
            +
            - test/integration/tests/fast/let.input
         | 
| 613 | 
            +
            - test/integration/tests/fast/let.output
         | 
| 614 | 
            +
            - test/integration/tests/fast/log.bas
         | 
| 615 | 
            +
            - test/integration/tests/fast/log.input
         | 
| 616 | 
            +
            - test/integration/tests/fast/log.output
         | 
| 617 | 
            +
            - test/integration/tests/fast/lt.bas
         | 
| 618 | 
            +
            - test/integration/tests/fast/lt.input
         | 
| 619 | 
            +
            - test/integration/tests/fast/lt.output
         | 
| 620 | 
            +
            - test/integration/tests/fast/math.output
         | 
| 621 | 
            +
            - test/integration/tests/fast/mid.bas
         | 
| 622 | 
            +
            - test/integration/tests/fast/mid.input
         | 
| 623 | 
            +
            - test/integration/tests/fast/mid.output
         | 
| 624 | 
            +
            - test/integration/tests/fast/multiply.bas
         | 
| 625 | 
            +
            - test/integration/tests/fast/multiply.input
         | 
| 626 | 
            +
            - test/integration/tests/fast/multiply.output
         | 
| 627 | 
            +
            - test/integration/tests/fast/ne.bas
         | 
| 628 | 
            +
            - test/integration/tests/fast/ne.input
         | 
| 629 | 
            +
            - test/integration/tests/fast/ne.output
         | 
| 630 | 
            +
            - test/integration/tests/fast/negate.bas
         | 
| 631 | 
            +
            - test/integration/tests/fast/negate.input
         | 
| 632 | 
            +
            - test/integration/tests/fast/negate.output
         | 
| 633 | 
            +
            - test/integration/tests/fast/not.bas
         | 
| 634 | 
            +
            - test/integration/tests/fast/not.input
         | 
| 635 | 
            +
            - test/integration/tests/fast/not.output
         | 
| 636 | 
            +
            - test/integration/tests/fast/on_goto.bas
         | 
| 637 | 
            +
            - test/integration/tests/fast/on_goto.input
         | 
| 638 | 
            +
            - test/integration/tests/fast/on_goto.output
         | 
| 639 | 
            +
            - test/integration/tests/fast/or.bas
         | 
| 640 | 
            +
            - test/integration/tests/fast/or.input
         | 
| 641 | 
            +
            - test/integration/tests/fast/or.output
         | 
| 642 | 
            +
            - test/integration/tests/fast/parentheses.bas
         | 
| 643 | 
            +
            - test/integration/tests/fast/parentheses.input
         | 
| 644 | 
            +
            - test/integration/tests/fast/parentheses.output
         | 
| 645 | 
            +
            - test/integration/tests/fast/power.bas
         | 
| 646 | 
            +
            - test/integration/tests/fast/power.input
         | 
| 647 | 
            +
            - test/integration/tests/fast/power.output
         | 
| 648 | 
            +
            - test/integration/tests/fast/print.bas
         | 
| 649 | 
            +
            - test/integration/tests/fast/print.input
         | 
| 650 | 
            +
            - test/integration/tests/fast/print.output
         | 
| 651 | 
            +
            - test/integration/tests/fast/read_data.bas
         | 
| 652 | 
            +
            - test/integration/tests/fast/read_data.input
         | 
| 653 | 
            +
            - test/integration/tests/fast/read_data.output
         | 
| 654 | 
            +
            - test/integration/tests/fast/rem.bas
         | 
| 655 | 
            +
            - test/integration/tests/fast/rem.input
         | 
| 656 | 
            +
            - test/integration/tests/fast/rem.output
         | 
| 657 | 
            +
            - test/integration/tests/fast/right.bas
         | 
| 658 | 
            +
            - test/integration/tests/fast/right.input
         | 
| 659 | 
            +
            - test/integration/tests/fast/right.output
         | 
| 660 | 
            +
            - test/integration/tests/fast/rnd.bas
         | 
| 661 | 
            +
            - test/integration/tests/fast/rnd.input
         | 
| 662 | 
            +
            - test/integration/tests/fast/rnd.output
         | 
| 663 | 
            +
            - test/integration/tests/fast/sgn.bas
         | 
| 664 | 
            +
            - test/integration/tests/fast/sgn.input
         | 
| 665 | 
            +
            - test/integration/tests/fast/sgn.output
         | 
| 666 | 
            +
            - test/integration/tests/fast/sin.bas
         | 
| 667 | 
            +
            - test/integration/tests/fast/sin.input
         | 
| 668 | 
            +
            - test/integration/tests/fast/sin.output
         | 
| 669 | 
            +
            - test/integration/tests/fast/sqr.bas
         | 
| 670 | 
            +
            - test/integration/tests/fast/sqr.input
         | 
| 671 | 
            +
            - test/integration/tests/fast/sqr.output
         | 
| 672 | 
            +
            - test/integration/tests/fast/stop.bas
         | 
| 673 | 
            +
            - test/integration/tests/fast/stop.input
         | 
| 674 | 
            +
            - test/integration/tests/fast/stop.output
         | 
| 675 | 
            +
            - test/integration/tests/fast/str.bas
         | 
| 676 | 
            +
            - test/integration/tests/fast/str.input
         | 
| 677 | 
            +
            - test/integration/tests/fast/str.output
         | 
| 678 | 
            +
            - test/integration/tests/fast/string_addition.bas
         | 
| 679 | 
            +
            - test/integration/tests/fast/string_addition.input
         | 
| 680 | 
            +
            - test/integration/tests/fast/string_addition.output
         | 
| 681 | 
            +
            - test/integration/tests/fast/string_comparisons.bas
         | 
| 682 | 
            +
            - test/integration/tests/fast/string_comparisons.input
         | 
| 683 | 
            +
            - test/integration/tests/fast/string_comparisons.output
         | 
| 684 | 
            +
            - test/integration/tests/fast/string_plus_integer.bas
         | 
| 685 | 
            +
            - test/integration/tests/fast/string_plus_integer.input
         | 
| 686 | 
            +
            - test/integration/tests/fast/string_plus_integer.output
         | 
| 687 | 
            +
            - test/integration/tests/fast/subtract.bas
         | 
| 688 | 
            +
            - test/integration/tests/fast/subtract.input
         | 
| 689 | 
            +
            - test/integration/tests/fast/subtract.output
         | 
| 690 | 
            +
            - test/integration/tests/fast/tab.bas
         | 
| 691 | 
            +
            - test/integration/tests/fast/tab.input
         | 
| 692 | 
            +
            - test/integration/tests/fast/tab.output
         | 
| 693 | 
            +
            - test/integration/tests/fast/tan.bas
         | 
| 694 | 
            +
            - test/integration/tests/fast/tan.input
         | 
| 695 | 
            +
            - test/integration/tests/fast/tan.output
         | 
| 696 | 
            +
            - test/integration/tests/fast/val.bas
         | 
| 697 | 
            +
            - test/integration/tests/fast/val.input
         | 
| 698 | 
            +
            - test/integration/tests/fast/val.output
         | 
| 699 | 
            +
            - test/spec/argument_checker_spec.rb
         | 
| 700 | 
            +
            - test/spec/basic_array_spec.rb
         | 
| 701 | 
            +
            - test/spec/basic_float_spec.rb
         | 
| 702 | 
            +
            - test/spec/basic_integer_spec.rb
         | 
| 703 | 
            +
            - test/spec/basic_numeric_spec.rb
         | 
| 704 | 
            +
            - test/spec/basic_object_spec.rb
         | 
| 705 | 
            +
            - test/spec/basic_string_spec.rb
         | 
| 706 | 
            +
            - test/spec/for_stack_spec.rb
         | 
| 707 | 
            +
            - test/spec/input_reader_spec.rb
         | 
| 708 | 
            +
            - test/spec/input_spec.rb
         | 
| 709 | 
            +
            - test/spec/line_spec.rb
         | 
| 710 | 
            +
            - test/spec/output_spec.rb
         | 
| 711 | 
            +
            - test/spec/parser_spec.rb
         | 
| 712 | 
            +
            - test/spec/program_spec.rb
         | 
| 713 | 
            +
            - test/spec/spec_helper.rb
         | 
| 714 | 
            +
            - test/spec/support/basic_numeric_helpers.rb
         | 
| 715 | 
            +
            - test/spec/support/basic_object_helpers.rb
         | 
| 716 | 
            +
            - test/spec/transcript_spec.rb
         | 
| 717 | 
            +
            - test/spec/transform_spec.rb
         | 
| 718 | 
            +
            homepage: http://github.com/wconrad/basic101
         | 
| 719 | 
            +
            licenses:
         | 
| 720 | 
            +
            - MIT
         | 
| 721 | 
            +
            metadata: {}
         | 
| 722 | 
            +
            post_install_message: 
         | 
| 723 | 
            +
            rdoc_options: []
         | 
| 724 | 
            +
            require_paths:
         | 
| 725 | 
            +
            - lib
         | 
| 726 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 727 | 
            +
              requirements:
         | 
| 728 | 
            +
              - - ">="
         | 
| 729 | 
            +
                - !ruby/object:Gem::Version
         | 
| 730 | 
            +
                  version: '0'
         | 
| 731 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 732 | 
            +
              requirements:
         | 
| 733 | 
            +
              - - ">="
         | 
| 734 | 
            +
                - !ruby/object:Gem::Version
         | 
| 735 | 
            +
                  version: '0'
         | 
| 736 | 
            +
            requirements: []
         | 
| 737 | 
            +
            rubyforge_project: 
         | 
| 738 | 
            +
            rubygems_version: 2.2.1
         | 
| 739 | 
            +
            signing_key: 
         | 
| 740 | 
            +
            specification_version: 4
         | 
| 741 | 
            +
            summary: Circa 1980 basic intepreter
         | 
| 742 | 
            +
            test_files: []
         |