basic101 0.2.0 → 1.0.1
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 +5 -5
- data/Changelog.md +14 -1
- data/Gemfile +3 -12
- data/Gemfile.lock +42 -76
- data/README.md +1 -1
- data/Rakefile +0 -8
- data/VERSION +1 -1
- data/basic101.gemspec +64 -664
- 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/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/parser.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
- data/lib/basic101.rb +3 -0
- metadata +26 -445
- data/.rspec +0 -2
- data/.simplecov +0 -1
- data/.travis.yml +0 -4
- 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
@@ -1,57 +0,0 @@
|
|
1
|
-
KING
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
DO YOU WANT INSTRUCTIONS? YES
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
CONGRATULATIONS! YOU'VE JUST BEEN ELECTED PREMIER OF SETATS
|
11
|
-
DETINU, A SMALL COMMUNIST ISLAND 30 BY 70 MILES LONG. YOUR
|
12
|
-
JOB IS TO DECIDE UPON THE CONTRY'S BUDGET AND DISTRIBUTE
|
13
|
-
MONEY TO YOUR COUNTRYMEN FROM THE COMMUNAL TREASURY.
|
14
|
-
THE MONEY SYSTEM IS RALLODS, AND EACH PERSON NEEDS 100
|
15
|
-
RALLODS PER YEAR TO SURVIVE. YOUR COUNTRY'S INCOME COMES
|
16
|
-
FROM FARM PRODUCE AND TOURISTS VISITING YOUR MAGNIFICENT
|
17
|
-
FORESTS, HUNTING, FISHING, ETC. HALF YOUR LAND IS FARM LAND
|
18
|
-
WHICH ALSO HAS AN EXCELLENT MINERAL CONTENT AND MAY BE SOLD
|
19
|
-
TO FOREIGN INDUSTRY (STRIP MINING) WHO IMPORT AND SUPPORT
|
20
|
-
THEIR OWN WORKERS. CROPS COST BETWEEN 10 AND 15 RALLODS PER
|
21
|
-
SQUARE MILE TO PLANT.
|
22
|
-
YOUR GOAL IS TO COMPLETE YOUR 8 YEAR TERM OF OFFICE.
|
23
|
-
GOOD LUCK!
|
24
|
-
|
25
|
-
|
26
|
-
YOU NOW HAVE 59833 RALLODS IN THE TREASURY.
|
27
|
-
500 COUNTRYMEN, AND 2000 SQ. MILES OF LAND.
|
28
|
-
THIS YEAR INDUSTRY WILL BUY LAND FOR 99 RALLODS PER SQUARE MILE.
|
29
|
-
LAND CURRENTLY COSTS 13 RALLODS PER SQUARE MILE TO PLANT.
|
30
|
-
|
31
|
-
HOW MANY SQUARE MILES DO YOU WISH TO SELL TO INDUSTRY? 100
|
32
|
-
HOW MANY RALLODS WILL YOU DISTRIBUTE AMONG YOUR COUNTRYMEN? 10000
|
33
|
-
HOW MANY SQUARE MILES DO YOU WISH TO PLANT? 20000
|
34
|
-
SORRY, BUT EACH COUNTRYMAN CAN ONLY PLANT 2 SQ. MILES.
|
35
|
-
HOW MANY SQUARE MILES DO YOU WISH TO PLANT? 1000
|
36
|
-
SORRY, BUT YOU'VE ONLY 900 SQ. MILES OF FARM LAND.
|
37
|
-
HOW MANY SQUARE MILES DO YOU WISH TO PLANT? 900
|
38
|
-
HOW MANY RALLODS DO YOU WISH TO SPEND ON POLLUTION CONTROL? 1000
|
39
|
-
|
40
|
-
|
41
|
-
400 COUNTRYMEN DIED OF STARVATION
|
42
|
-
1 COUNTRYMEN DIED OF CARBON-MONOXIDE AND DUST INHALATION
|
43
|
-
YOU WERE FORCED TO SPEND 3609 RALLODS ON FUNERAL EXPENSES
|
44
|
-
109 WORKERS CAME TO THE COUNTRY AND 37 COUNTRYMEN CAME TO THE ISLAND.
|
45
|
-
OF 900 SQ. MILES PLANTED, YOU HARVESTED 806 SQ. MILES OF CROPS.
|
46
|
-
(DUE TO AIR AND WATER POLLUTION FROM FOREIGN INDUSTRY.)
|
47
|
-
MAKING 39897 RALLODS.
|
48
|
-
YOU MADE 1073 RALLODS FROM TOURIST TRADE.
|
49
|
-
|
50
|
-
|
51
|
-
401 COUNTRYMEN DIED IN ONE YEAR!!!!!
|
52
|
-
DUE TO THIS EXTREME MISMANAGEMENT, YOU HAVE NOT ONLY
|
53
|
-
BEEN IMPEACHED AND THROWN OUT OF OFFICE, BUT YOU
|
54
|
-
HAVE ALSO GAINED A VERY BAD REPUTATION.
|
55
|
-
|
56
|
-
|
57
|
-
Break in line 1596
|
@@ -1,68 +0,0 @@
|
|
1
|
-
LEM
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
LUNAR LANDING SIMULATION
|
5
|
-
|
6
|
-
HAVE YOU FLOWN AN APOLLO/LEM MISSION BEFORE (YES OR NO)? NO
|
7
|
-
|
8
|
-
WHICH SYSTEM OF MEASUREMENT DO YOU PREFER?
|
9
|
-
1=METRIC 0=ENGLISH
|
10
|
-
ENTER THE APPROPRIATE NUMBER? 0
|
11
|
-
|
12
|
-
|
13
|
-
YOU ARE ON A LUNAR LANDING MISSION. AS THE PILOT OF
|
14
|
-
THE LUNAR EXCURSION MODULE, YOU WILL BE EXPECTED TO
|
15
|
-
GIVE CERTAIN COMMANDS TO THE MODULE NAVIGATION SYSTEM.
|
16
|
-
THE ON-BOARD COMPUTER WILL GIVE A RUNNING ACCOUNT
|
17
|
-
OF INFORMATION NEEDED TO NAVIGATE THE SHIP.
|
18
|
-
|
19
|
-
|
20
|
-
THE ATTITUDE ANGLE CALLED FOR IS DESCRIBED AS FOLLOWS.
|
21
|
-
+ OR -180 DEGREES IS DIRECTLY AWAY FROM THE MOON
|
22
|
-
-90 DEGREES IS ON A TANGENT IN THE DIRECTION OF ORBIT
|
23
|
-
+90 DEGREES IS ON A TANGENT FROM THE DIRECTION OF ORBIT
|
24
|
-
0 (ZERO) DEGREES IS DIRECTLY TOWARD THE MOON
|
25
|
-
|
26
|
-
-180|+180
|
27
|
-
^
|
28
|
-
-90 < -+- > +90
|
29
|
-
!
|
30
|
-
0
|
31
|
-
<<<< DIRECTION OF ORBIT <<<<
|
32
|
-
|
33
|
-
------ SURFACE OF MOON ------
|
34
|
-
|
35
|
-
|
36
|
-
ALL ANGLES BETWEEN -180 AND +180 DEGREES ARE ACCEPTED.
|
37
|
-
|
38
|
-
1 FUEL UNIT = 1 SEC. AT MAX THRUST
|
39
|
-
ANY DISCREPANCIES ARE ACCOUNTED FOR IN THE USE OF FUEL
|
40
|
-
FOR AN ATTITUDE CHANGE.
|
41
|
-
AVAILABLE ENGINE POWER: 0 (ZERO) AND ANY VALUE BETWEEN
|
42
|
-
10 AND 100 PERCENT.
|
43
|
-
|
44
|
-
NEGATIVE THRUST OR TIME IS PROHIBITED.
|
45
|
-
|
46
|
-
|
47
|
-
INPUT: TIME INTERVAL IN SECONDS ------ (T)
|
48
|
-
PERCENTAGE OF THRUST ---------- (P)
|
49
|
-
ATTITUDE ANGLE IN DEGREES ----- (A)
|
50
|
-
|
51
|
-
FOR EXAMPLE:
|
52
|
-
T,P,A? 10,65,-60
|
53
|
-
TO ABORT THE MISSION AT ANY TIME, ENTER 0,0,0
|
54
|
-
|
55
|
-
OUTPUT: TOTAL TIME IN ELAPSED SECONDS
|
56
|
-
HEIGHT IN FEET
|
57
|
-
DISTANCE FROM LANDING SITE IN FEET
|
58
|
-
VERTICAL VELOCITY IN FEET/SECOND
|
59
|
-
HORIZONTAL VELOCITY IN FEET/SECOND
|
60
|
-
FUEL UNITS REMAINING
|
61
|
-
|
62
|
-
0 364800 -19283024 0 5301.638 750
|
63
|
-
T,P,A? 10,65,-60
|
64
|
-
10 364944 -1.92335e+07 28.66155 5245.354 743.5
|
65
|
-
T,P,A? 20,50,0
|
66
|
-
30 366412 -1.9135e+07 118.2137 5244.074 733.5
|
67
|
-
T,P,A?
|
68
|
-
Error on line 585: No more input
|
@@ -1,123 +0,0 @@
|
|
1
|
-
LETTER
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
LETTER GUESSING GAME
|
7
|
-
|
8
|
-
I'LL THINK OF A LETTER OF THE ALPHABET, A TO Z.
|
9
|
-
TRY TO GUESS MY LETTER AND I'LL GIVE YOU CLUES
|
10
|
-
AS TO HOW CLOSE YOU'RE GETTING TO MY LETTER.
|
11
|
-
|
12
|
-
O.K., I HAVE A LETTER. START GUESSING.
|
13
|
-
|
14
|
-
WHAT IS YOUR GUESS? M
|
15
|
-
|
16
|
-
TOO LOW. TRY A HIGHER LETTER.
|
17
|
-
|
18
|
-
WHAT IS YOUR GUESS? T
|
19
|
-
|
20
|
-
TOO HIGH. TRY A LOWER LETTER.
|
21
|
-
|
22
|
-
WHAT IS YOUR GUESS? P
|
23
|
-
|
24
|
-
TOO HIGH. TRY A LOWER LETTER.
|
25
|
-
|
26
|
-
WHAT IS YOUR GUESS? O
|
27
|
-
|
28
|
-
|
29
|
-
YOU GOT IT IN 4 GUESSES!!
|
30
|
-
GOOD JOB !!!!!
|
31
|
-
|
32
|
-
LET'S PLAN AGAIN.....
|
33
|
-
|
34
|
-
O.K., I HAVE A LETTER. START GUESSING.
|
35
|
-
|
36
|
-
WHAT IS YOUR GUESS? A
|
37
|
-
|
38
|
-
TOO LOW. TRY A HIGHER LETTER.
|
39
|
-
|
40
|
-
WHAT IS YOUR GUESS? B
|
41
|
-
|
42
|
-
TOO LOW. TRY A HIGHER LETTER.
|
43
|
-
|
44
|
-
WHAT IS YOUR GUESS? C
|
45
|
-
|
46
|
-
TOO LOW. TRY A HIGHER LETTER.
|
47
|
-
|
48
|
-
WHAT IS YOUR GUESS? D
|
49
|
-
|
50
|
-
TOO LOW. TRY A HIGHER LETTER.
|
51
|
-
|
52
|
-
WHAT IS YOUR GUESS? E
|
53
|
-
|
54
|
-
TOO LOW. TRY A HIGHER LETTER.
|
55
|
-
|
56
|
-
WHAT IS YOUR GUESS? F
|
57
|
-
|
58
|
-
TOO LOW. TRY A HIGHER LETTER.
|
59
|
-
|
60
|
-
WHAT IS YOUR GUESS? G
|
61
|
-
|
62
|
-
TOO LOW. TRY A HIGHER LETTER.
|
63
|
-
|
64
|
-
WHAT IS YOUR GUESS? H
|
65
|
-
|
66
|
-
TOO LOW. TRY A HIGHER LETTER.
|
67
|
-
|
68
|
-
WHAT IS YOUR GUESS? I
|
69
|
-
|
70
|
-
TOO LOW. TRY A HIGHER LETTER.
|
71
|
-
|
72
|
-
WHAT IS YOUR GUESS? J
|
73
|
-
|
74
|
-
TOO LOW. TRY A HIGHER LETTER.
|
75
|
-
|
76
|
-
WHAT IS YOUR GUESS? K
|
77
|
-
|
78
|
-
TOO LOW. TRY A HIGHER LETTER.
|
79
|
-
|
80
|
-
WHAT IS YOUR GUESS? L
|
81
|
-
|
82
|
-
TOO LOW. TRY A HIGHER LETTER.
|
83
|
-
|
84
|
-
WHAT IS YOUR GUESS? M
|
85
|
-
|
86
|
-
TOO LOW. TRY A HIGHER LETTER.
|
87
|
-
|
88
|
-
WHAT IS YOUR GUESS? N
|
89
|
-
|
90
|
-
TOO LOW. TRY A HIGHER LETTER.
|
91
|
-
|
92
|
-
WHAT IS YOUR GUESS? O
|
93
|
-
|
94
|
-
TOO LOW. TRY A HIGHER LETTER.
|
95
|
-
|
96
|
-
WHAT IS YOUR GUESS? P
|
97
|
-
|
98
|
-
TOO LOW. TRY A HIGHER LETTER.
|
99
|
-
|
100
|
-
WHAT IS YOUR GUESS? Q
|
101
|
-
|
102
|
-
TOO LOW. TRY A HIGHER LETTER.
|
103
|
-
|
104
|
-
WHAT IS YOUR GUESS? R
|
105
|
-
|
106
|
-
TOO LOW. TRY A HIGHER LETTER.
|
107
|
-
|
108
|
-
WHAT IS YOUR GUESS? S
|
109
|
-
|
110
|
-
|
111
|
-
YOU GOT IT IN 19 GUESSES!!
|
112
|
-
BUT IT SHOULDN'T TAKE MORE THAN 5 GUESSES!
|
113
|
-
|
114
|
-
LET'S PLAN AGAIN.....
|
115
|
-
|
116
|
-
O.K., I HAVE A LETTER. START GUESSING.
|
117
|
-
|
118
|
-
WHAT IS YOUR GUESS? T
|
119
|
-
|
120
|
-
TOO HIGH. TRY A LOWER LETTER.
|
121
|
-
|
122
|
-
WHAT IS YOUR GUESS?
|
123
|
-
Error on line 430: No more input
|
@@ -1 +0,0 @@
|
|
1
|
-
max_output_lines: 200
|
@@ -1,200 +0,0 @@
|
|
1
|
-
LIFE
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
ENTER YOUR PATTERN:
|
7
|
-
? * ** *
|
8
|
-
? ** *
|
9
|
-
? **
|
10
|
-
? DONE
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
GENERATION: 0 POPULATION: 9
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
* ** *
|
25
|
-
** *
|
26
|
-
**
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
GENERATION: 1 POPULATION: 10
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
* ***
|
49
|
-
***
|
50
|
-
***
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
GENERATION: 2 POPULATION: 11
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
*
|
71
|
-
** *
|
72
|
-
* *
|
73
|
-
****
|
74
|
-
*
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
GENERATION: 3 POPULATION: 12
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
**
|
94
|
-
* *
|
95
|
-
*
|
96
|
-
*****
|
97
|
-
* *
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
GENERATION: 4 POPULATION: 14
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
**
|
117
|
-
* *
|
118
|
-
* *
|
119
|
-
** **
|
120
|
-
** **
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
GENERATION: 5 POPULATION: 15
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
**
|
140
|
-
** *
|
141
|
-
** * *
|
142
|
-
* *
|
143
|
-
** **
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
GENERATION: 6 POPULATION: 14
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
***
|
163
|
-
* *
|
164
|
-
* * **
|
165
|
-
* *
|
166
|
-
***
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
GENERATION: 7 POPULATION: 15
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
*
|
185
|
-
***
|
186
|
-
* **
|
187
|
-
**
|
188
|
-
**
|
189
|
-
***
|
190
|
-
*
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
GENERATION: 8 POPULATION: 21
|
200
|
-
Error on line 225: Maximum output lines reached
|
@@ -1,113 +0,0 @@
|
|
1
|
-
LIFE2
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
U.B. LIFE GAME
|
7
|
-
|
8
|
-
PLAYER 1 - 3 LIVE PIECES.
|
9
|
-
X,Y
|
10
|
-
XXXXXX
|
11
|
-
X,Y
|
12
|
-
XXXXXX
|
13
|
-
X,Y
|
14
|
-
XXXXXX
|
15
|
-
|
16
|
-
PLAYER 2 - 3 LIVE PIECES.
|
17
|
-
X,Y
|
18
|
-
XXXXXX
|
19
|
-
X,Y
|
20
|
-
XXXXXX
|
21
|
-
X,Y
|
22
|
-
XXXXXX
|
23
|
-
|
24
|
-
0 1 2 3 4 5 0
|
25
|
-
1 * 1
|
26
|
-
2 * 2
|
27
|
-
3 # * 3
|
28
|
-
4 # 4
|
29
|
-
5 # 5
|
30
|
-
0 1 2 3 4 5 0
|
31
|
-
|
32
|
-
0 1 2 3 4 5 0
|
33
|
-
1 1
|
34
|
-
2 * * * 2
|
35
|
-
3 # * 3
|
36
|
-
4 # # # 4
|
37
|
-
5 5
|
38
|
-
0 1 2 3 4 5 0
|
39
|
-
|
40
|
-
PLAYER 1 X,Y
|
41
|
-
XXXXXX
|
42
|
-
|
43
|
-
|
44
|
-
PLAYER 2 X,Y
|
45
|
-
XXXXXX
|
46
|
-
|
47
|
-
|
48
|
-
0 1 2 3 4 5 0
|
49
|
-
1 * 1
|
50
|
-
2 * * 2
|
51
|
-
3 3
|
52
|
-
4 # # 4
|
53
|
-
5 # # 5
|
54
|
-
0 1 2 3 4 5 0
|
55
|
-
|
56
|
-
PLAYER 1 X,Y
|
57
|
-
XXXXXX
|
58
|
-
|
59
|
-
|
60
|
-
PLAYER 2 X,Y
|
61
|
-
XXXXXX
|
62
|
-
ILLEGAL COORDS. RETYPE
|
63
|
-
X,Y
|
64
|
-
XXXXXX
|
65
|
-
ILLEGAL COORDS. RETYPE
|
66
|
-
X,Y
|
67
|
-
XXXXXX
|
68
|
-
|
69
|
-
|
70
|
-
0 1 2 3 4 5 0
|
71
|
-
1 * * * 1
|
72
|
-
2 * # * 2
|
73
|
-
3 # # 3
|
74
|
-
4 # # 4
|
75
|
-
5 # # * 5
|
76
|
-
0 1 2 3 4 5 0
|
77
|
-
|
78
|
-
PLAYER 1 X,Y
|
79
|
-
XXXXXX
|
80
|
-
|
81
|
-
|
82
|
-
PLAYER 2 X,Y
|
83
|
-
XXXXXX
|
84
|
-
|
85
|
-
|
86
|
-
0 1 2 3 4 5 0
|
87
|
-
1 * # 1
|
88
|
-
2 2
|
89
|
-
3 # 3
|
90
|
-
4 4
|
91
|
-
5 # * 5
|
92
|
-
0 1 2 3 4 5 0
|
93
|
-
|
94
|
-
PLAYER 1 X,Y
|
95
|
-
XXXXXX
|
96
|
-
ILLEGAL COORDS. RETYPE
|
97
|
-
X,Y
|
98
|
-
XXXXXX
|
99
|
-
|
100
|
-
|
101
|
-
PLAYER 2 X,Y
|
102
|
-
XXXXXX
|
103
|
-
|
104
|
-
|
105
|
-
0 1 2 3 4 5 0
|
106
|
-
1 1
|
107
|
-
2 2
|
108
|
-
3 3
|
109
|
-
4 # # 4
|
110
|
-
5 # 5
|
111
|
-
0 1 2 3 4 5 0
|
112
|
-
PLAYER 2 IS THE WINNER
|
113
|
-
Error on line 575: Undefined line number 800
|
@@ -1,36 +0,0 @@
|
|
1
|
-
LITERATURE QUIZ
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
TEST YOUR KNOWLEDGE OF CHILDREN'S LITERATURE.
|
7
|
-
|
8
|
-
THIS IS A MULTIPLE-CHOICE QUIZ.
|
9
|
-
TYPE A 1, 2, 3, OR 4 AFTER THE QUESTION MARK.
|
10
|
-
|
11
|
-
GOOD LUCK!
|
12
|
-
|
13
|
-
|
14
|
-
IN PINOCCHIO, WHAT WAS THE NAME OF THE CAT
|
15
|
-
1)TIGGER, 2)CICERO, 3)FIGARO, 4)GUIPETTO? 2
|
16
|
-
SORRY...FIGARO WAS HIS NAME.
|
17
|
-
|
18
|
-
|
19
|
-
FROM WHOSE GARDEN DID BUGS BUNNY STEAL THE CARROTS?
|
20
|
-
1)MR. NIXON'S, 2)ELMER FUDD'S, 3)CLEM JUDD'S, 4)STROMBOLI'S? 2
|
21
|
-
PRETTY GOOD!
|
22
|
-
|
23
|
-
|
24
|
-
IN THE WIZARD OF OS, DOROTHY'S DOG WAS NAMED
|
25
|
-
1)CICERO, 2)TRIXIA, 3)KING, 4)TOTO? 4
|
26
|
-
YEA! YOU'RE A REAL LITERATURE GIANT.
|
27
|
-
|
28
|
-
|
29
|
-
WHO WAS THE FAIR MAIDEN WHO ATE THE POISON APPLE
|
30
|
-
1)SLEEPING BEAUTY, 2)CINDERELLA, 3)SNOW WHITE, 4)WENDY? 3
|
31
|
-
GOOD MEMORY!
|
32
|
-
|
33
|
-
|
34
|
-
NOT BAD, BUT YOU MIGHT SPEND A LITTLE MORE TIME
|
35
|
-
READING THE NURSERY GREATS.
|
36
|
-
Break in line 96
|
@@ -1 +0,0 @@
|
|
1
|
-
ILIKEHIPPIES
|