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