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,49 +0,0 @@
|
|
1
|
-
TIC TAC TOE
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
THE GAME BOARD IS NUMBERED:
|
7
|
-
|
8
|
-
1 2 3
|
9
|
-
8 9 4
|
10
|
-
7 6 5
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
COMPUTER MOVES 9
|
15
|
-
YOUR MOVE? 7
|
16
|
-
COMPUTER MOVES 8
|
17
|
-
YOUR MOVE? 4
|
18
|
-
COMPUTER MOVES 2
|
19
|
-
YOUR MOVE? 6
|
20
|
-
COMPUTER MOVES 5
|
21
|
-
YOUR MOVE? 1
|
22
|
-
COMPUTER MOVES 3
|
23
|
-
THE GAME IS A DRAW.
|
24
|
-
|
25
|
-
|
26
|
-
COMPUTER MOVES 9
|
27
|
-
YOUR MOVE? 1
|
28
|
-
COMPUTER MOVES 2
|
29
|
-
YOUR MOVE? 6
|
30
|
-
COMPUTER MOVES 4
|
31
|
-
YOUR MOVE? 8
|
32
|
-
COMPUTER MOVES 7
|
33
|
-
YOUR MOVE? 5
|
34
|
-
COMPUTER MOVES 3
|
35
|
-
COMPUTER MOVES 5
|
36
|
-
THE GAME IS A DRAW.
|
37
|
-
|
38
|
-
|
39
|
-
COMPUTER MOVES 9
|
40
|
-
YOUR MOVE? 9
|
41
|
-
COMPUTER MOVES 2
|
42
|
-
YOUR MOVE? 5
|
43
|
-
COMPUTER MOVES 6
|
44
|
-
AND WINS ********
|
45
|
-
|
46
|
-
|
47
|
-
COMPUTER MOVES 9
|
48
|
-
YOUR MOVE?
|
49
|
-
Error on line 670: No more input
|
@@ -1,104 +0,0 @@
|
|
1
|
-
TIC-TAC-TOE
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
THE BOARD IS NUMBERED:
|
7
|
-
1 2 3
|
8
|
-
4 5 6
|
9
|
-
7 8 9
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
DO YOU WANT 'X' OR 'O'? X
|
14
|
-
|
15
|
-
WHERE DO YOU MOVE? 1
|
16
|
-
|
17
|
-
X ! !
|
18
|
-
---+---+---
|
19
|
-
! !
|
20
|
-
---+---+---
|
21
|
-
! !
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
THE COMPUTER MOVES TO...
|
26
|
-
|
27
|
-
X ! !
|
28
|
-
---+---+---
|
29
|
-
! O !
|
30
|
-
---+---+---
|
31
|
-
! !
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
WHERE DO YOU MOVE? 9
|
36
|
-
|
37
|
-
X ! !
|
38
|
-
---+---+---
|
39
|
-
! O !
|
40
|
-
---+---+---
|
41
|
-
! ! X
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
THE COMPUTER MOVES TO...
|
46
|
-
|
47
|
-
X ! O !
|
48
|
-
---+---+---
|
49
|
-
! O !
|
50
|
-
---+---+---
|
51
|
-
! ! X
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
WHERE DO YOU MOVE? 8
|
56
|
-
|
57
|
-
X ! O !
|
58
|
-
---+---+---
|
59
|
-
! O !
|
60
|
-
---+---+---
|
61
|
-
! X ! X
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
THE COMPUTER MOVES TO...
|
66
|
-
|
67
|
-
X ! O !
|
68
|
-
---+---+---
|
69
|
-
! O !
|
70
|
-
---+---+---
|
71
|
-
O ! X ! X
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
WHERE DO YOU MOVE? 3
|
76
|
-
|
77
|
-
X ! O ! X
|
78
|
-
---+---+---
|
79
|
-
! O !
|
80
|
-
---+---+---
|
81
|
-
O ! X ! X
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
THE COMPUTER MOVES TO...
|
86
|
-
|
87
|
-
X ! O ! X
|
88
|
-
---+---+---
|
89
|
-
! O ! O
|
90
|
-
---+---+---
|
91
|
-
O ! X ! X
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
WHERE DO YOU MOVE? 4
|
96
|
-
|
97
|
-
X ! O ! X
|
98
|
-
---+---+---
|
99
|
-
X ! O ! O
|
100
|
-
---+---+---
|
101
|
-
O ! X ! X
|
102
|
-
|
103
|
-
|
104
|
-
IT'S A DRAW. THANK YOU.
|
@@ -1,70 +0,0 @@
|
|
1
|
-
TOWERS
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
TOWERS OF HANOI PUZZLE.
|
8
|
-
|
9
|
-
YOU MUST TRANSFER THE DISKS FROM THE LEFT TO THE RIGHT
|
10
|
-
TOWER, ONE AT A TIME, NEVER PUTTING A LARGER DISK ON A
|
11
|
-
SMALLER DISK.
|
12
|
-
|
13
|
-
HOW MANY DISKS DO YOU WANT TO MOVE (7 IS MAX)? 2
|
14
|
-
|
15
|
-
IN THIS PROGRAM, WE SHALL REFER TO DISKS BY NUMERICAL CODE.
|
16
|
-
3 WILL REPRESENT THE SMALLEST DISK, 5 THE NEXT SIZE,
|
17
|
-
7 THE NEXT, AND SO ON, UP TO 15. IF YOU DO THE PUZZLE WITH
|
18
|
-
2 DISKS, THEIR CODE NAMES WOULD BE 13 AND 15. WITH 3 DISKS
|
19
|
-
THE CODE NAMES WOULD BE 11, 13 AND 15, ETC. THE NEEDLES
|
20
|
-
ARE NUMBERED FROM LEFT TO RIGHT, 1 TO 3. WE WILL
|
21
|
-
START WITH THE DISKS ON NEEDLE 1, AND ATTEMPT TO MOVE THEM
|
22
|
-
TO NEEDLE 3.
|
23
|
-
|
24
|
-
GOOD LUCK!
|
25
|
-
|
26
|
-
* * *
|
27
|
-
* * *
|
28
|
-
* * *
|
29
|
-
* * *
|
30
|
-
* * *
|
31
|
-
************* * *
|
32
|
-
*************** * *
|
33
|
-
WHICH DISK WOULD YOU LIKE TO MOVE? 0
|
34
|
-
ILLEGAL ENTRY... YOU MAY ONLY TYPE 3,5,7,9,11,13, OR 15.
|
35
|
-
? 13
|
36
|
-
PLACE DISK ON WHICH NEEDLE? 2
|
37
|
-
* * *
|
38
|
-
* * *
|
39
|
-
* * *
|
40
|
-
* * *
|
41
|
-
* * *
|
42
|
-
* * *
|
43
|
-
*************** ************* *
|
44
|
-
WHICH DISK WOULD YOU LIKE TO MOVE? 15
|
45
|
-
PLACE DISK ON WHICH NEEDLE? 3
|
46
|
-
* * *
|
47
|
-
* * *
|
48
|
-
* * *
|
49
|
-
* * *
|
50
|
-
* * *
|
51
|
-
* * *
|
52
|
-
* ************* ***************
|
53
|
-
WHICH DISK WOULD YOU LIKE TO MOVE? 13
|
54
|
-
PLACE DISK ON WHICH NEEDLE? 3
|
55
|
-
* * *
|
56
|
-
* * *
|
57
|
-
* * *
|
58
|
-
* * *
|
59
|
-
* * *
|
60
|
-
* * *************
|
61
|
-
* * ***************
|
62
|
-
|
63
|
-
CONGRATULATIONS!!
|
64
|
-
|
65
|
-
YOU HAVE PERFORMED THE TASK IN 3 MOVES.
|
66
|
-
|
67
|
-
TRY AGAIN (YES OR NO)? NO
|
68
|
-
|
69
|
-
THANKS FOR THE GAME!
|
70
|
-
|
@@ -1,23 +0,0 @@
|
|
1
|
-
TRAIN
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
TIME - SPEED DISTANCE EXERCISE
|
7
|
-
|
8
|
-
A CAR TRAVELING 53 MPH CAN MAKE A CERTAIN TRIP IN
|
9
|
-
15 HOURS LESS THAN A TRAIN TRAVELING AT 31 MPH.
|
10
|
-
HOW LONG DOES THE TRIP TAKE BY CAR? 21
|
11
|
-
GOOD! ANSWER WITHIN 1 PERCENT.
|
12
|
-
CORRECT ANSWER IS 21.13636 HOURS.
|
13
|
-
|
14
|
-
ANOTHER PROBLEM (YES OR NO)? YES
|
15
|
-
|
16
|
-
A CAR TRAVELING 53 MPH CAN MAKE A CERTAIN TRIP IN
|
17
|
-
11 HOURS LESS THAN A TRAIN TRAVELING AT 32 MPH.
|
18
|
-
HOW LONG DOES THE TRIP TAKE BY CAR? 123
|
19
|
-
SORRY. YOU WERE OFF BY 86 PERCENT.
|
20
|
-
CORRECT ANSWER IS 16.7619 HOURS.
|
21
|
-
|
22
|
-
ANOTHER PROBLEM (YES OR NO)? NO
|
23
|
-
|
@@ -1,40 +0,0 @@
|
|
1
|
-
TRAP
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
INSTRUCTIONS? YES
|
7
|
-
I AM THINKING OF A NUMBER BETWEEN 1 AND 100
|
8
|
-
TRY TO GUESS MY NUMBER. ON EACH GUESS,
|
9
|
-
YOU ARE TO ENTER 2 NUMBERS, TRYING TO TRAP
|
10
|
-
MY NUMBER BETWEEN THE TWO NUMBERS. I WILL
|
11
|
-
TELL YOU IF YOU HAVE TRAPPED MY NUMBER, IF MY
|
12
|
-
NUMBER IS LARGER THAN YOUR TWO NUMBERS, OR IF
|
13
|
-
MY NUMBER IS SMALLER THAN YOUR TWO NUMBERS.
|
14
|
-
IF YOU WANT TO GUESS ONE SINGLE NUMBER, TYPE
|
15
|
-
YOUR GUESS FOR BOTH YOUR TRAP NUMBERS.
|
16
|
-
YOU GET 6 GUESSES TO GET MY NUMBER.
|
17
|
-
|
18
|
-
GUESS # 1 ? 33,66
|
19
|
-
YOU HAVE TRAPPED MY NUMBER.
|
20
|
-
|
21
|
-
GUESS # 2 ? 41,58
|
22
|
-
YOU HAVE TRAPPED MY NUMBER.
|
23
|
-
|
24
|
-
GUESS # 3 ? 45,54
|
25
|
-
MY NUMBER IS LARGER THAN YOUR TRAP NUMBERS.
|
26
|
-
|
27
|
-
GUESS # 4 ? 55,57
|
28
|
-
YOU HAVE TRAPPED MY NUMBER.
|
29
|
-
|
30
|
-
GUESS # 5 ? 56,57
|
31
|
-
MY NUMBER IS SMALLER THAN YOUR TRAP NUMBERS.
|
32
|
-
|
33
|
-
GUESS # 6 ? 55,55
|
34
|
-
YOU GOT IT!!!
|
35
|
-
|
36
|
-
TRY AGAIN.
|
37
|
-
|
38
|
-
|
39
|
-
GUESS # 1 ?
|
40
|
-
Error on line 220: No more input
|
@@ -1,54 +0,0 @@
|
|
1
|
-
WAR
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
THIS IS THE CARD GAME OF WAR. EACH CARD IS GIVEN BY SUIT-#
|
7
|
-
AS S-7 FOR SPADE 7. DO YOU WANT DIRECTIONS? YES
|
8
|
-
THE COMPUTER GIVES YOU AND IT A 'CARD'. THE HIGHER CARD
|
9
|
-
(NUMERICALLY) WINS. THE GAME ENDS WHEN YOU CHOOSE NOT TO
|
10
|
-
CONTINUE OR WHEN YOU HAVE FINISHED THE PACK.
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
YOU: S-9 COMPUTER: H-J
|
15
|
-
THE COMPUTER WINS!!! YOU HAVE 0 AND THE COMPUTER HAS 1
|
16
|
-
DO YOU WANT TO CONTINUE? Y
|
17
|
-
YES OR NO, PLEASE. DO YOU WANT TO CONTINUE? YES
|
18
|
-
|
19
|
-
YOU: D-9 COMPUTER: C-7
|
20
|
-
YOU WIN. YOU HAVE 1 AND THE COMPUTER HAS 1
|
21
|
-
DO YOU WANT TO CONTINUE? YES
|
22
|
-
|
23
|
-
YOU: H-10 COMPUTER: C-K
|
24
|
-
THE COMPUTER WINS!!! YOU HAVE 1 AND THE COMPUTER HAS 2
|
25
|
-
DO YOU WANT TO CONTINUE? YES
|
26
|
-
|
27
|
-
YOU: C-A COMPUTER: D-6
|
28
|
-
YOU WIN. YOU HAVE 2 AND THE COMPUTER HAS 2
|
29
|
-
DO YOU WANT TO CONTINUE? YES
|
30
|
-
|
31
|
-
YOU: H-Q COMPUTER: D-8
|
32
|
-
YOU WIN. YOU HAVE 3 AND THE COMPUTER HAS 2
|
33
|
-
DO YOU WANT TO CONTINUE? YES
|
34
|
-
|
35
|
-
YOU: H-9 COMPUTER: S-A
|
36
|
-
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 3
|
37
|
-
DO YOU WANT TO CONTINUE? YES
|
38
|
-
|
39
|
-
YOU: D-2 COMPUTER: S-3
|
40
|
-
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 4
|
41
|
-
DO YOU WANT TO CONTINUE? YES
|
42
|
-
|
43
|
-
YOU: H-2 COMPUTER: D-Q
|
44
|
-
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 5
|
45
|
-
DO YOU WANT TO CONTINUE? YES
|
46
|
-
|
47
|
-
YOU: S-Q COMPUTER: H-K
|
48
|
-
THE COMPUTER WINS!!! YOU HAVE 3 AND THE COMPUTER HAS 6
|
49
|
-
DO YOU WANT TO CONTINUE? YES
|
50
|
-
|
51
|
-
YOU: D-7 COMPUTER: C-3
|
52
|
-
YOU WIN. YOU HAVE 4 AND THE COMPUTER HAS 6
|
53
|
-
DO YOU WANT TO CONTINUE?
|
54
|
-
Error on line 560: No more input
|
@@ -1,28 +0,0 @@
|
|
1
|
-
WEEKDAY
|
2
|
-
CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
WEEKDAY IS A COMPUTER DEMONSTRATION THAT
|
7
|
-
GIVES FACTS ABOUT A DATE OF INTEREST TO YOU.
|
8
|
-
|
9
|
-
ENTER TODAY'S DATE IN THE FORM: 3,24,1979 ? 3,1,2014
|
10
|
-
ENTER DAY OF BIRTH (OR OTHER DAY OF INTEREST)? 1,1,1961
|
11
|
-
|
12
|
-
1 / 1 / 1961 WAS A SUNDAY.
|
13
|
-
|
14
|
-
YEARS MONTHS DAYS
|
15
|
-
----- ------ ----
|
16
|
-
YOUR AGE (IF BIRTHDATE) 53 2 0
|
17
|
-
YOU HAVE SLEPT 18 7 12
|
18
|
-
YOU HAVE EATEN 9 0 14
|
19
|
-
YOU HAVE WORKED/PLAYED 12 2 23
|
20
|
-
YOU HAVE RELAXED 13 3 11
|
21
|
-
|
22
|
-
*** YOU MAY RETIRE IN 2026 ***
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,11 +0,0 @@
|
|
1
|
-
10 PRINT A(0)
|
2
|
-
20 LET A(0) = 100
|
3
|
-
30 LET A(10) = 101
|
4
|
-
40 PRINT A(0), A(10)
|
5
|
-
50 DIM A$(2, 4)
|
6
|
-
60 PRINT "'"; A$(0, 0); "'"
|
7
|
-
70 LET A$(0, 0) = "0, 0"
|
8
|
-
80 LET A$(2, 4) = "2, 4"
|
9
|
-
90 PRINT "'"; A$(0, 0); "'"
|
10
|
-
100 PRINT "'"; A$(2, 4); "'"
|
11
|
-
110 PRINT "'"; B$(9); "'"
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
10 PRINT ASC("A")
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
65
|
@@ -1 +0,0 @@
|
|
1
|
-
10 PRINT CHR$(65)
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
A
|
@@ -1 +0,0 @@
|
|
1
|
-
10 PRINT COS(3.14159265 / 8)
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
0.9238795
|
File without changes
|
File without changes
|
File without changes
|
@@ -1 +0,0 @@
|
|
1
|
-
OK
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,61 +0,0 @@
|
|
1
|
-
10 PRINT "NORMAL LOOP"
|
2
|
-
20 FOR I = 1 TO 2
|
3
|
-
30 PRINT I
|
4
|
-
40 NEXT I
|
5
|
-
45 PRINT I
|
6
|
-
50 PRINT "BACKWARDS"
|
7
|
-
60 FOR I = 2 TO 1 STEP -1
|
8
|
-
70 PRINT I
|
9
|
-
80 NEXT I
|
10
|
-
85 PRINT I
|
11
|
-
90 PRINT "START = END"
|
12
|
-
100 FOR I = 1 TO 1
|
13
|
-
110 PRINT I
|
14
|
-
120 NEXT I
|
15
|
-
125 PRINT I
|
16
|
-
130 PRINT "START = END, BACKWARDS"
|
17
|
-
140 FOR I = 1 TO 1 STEP -1
|
18
|
-
150 PRINT I
|
19
|
-
160 NEXT I
|
20
|
-
165 PRINT I
|
21
|
-
170 PRINT "ALREADY DONE"
|
22
|
-
180 FOR I = 1 TO 0
|
23
|
-
190 PRINT I
|
24
|
-
200 NEXT I
|
25
|
-
205 PRINT I
|
26
|
-
210 PRINT "ALREADY DONE, BACKWARDS"
|
27
|
-
220 FOR I = 0 TO 1 STEP -1
|
28
|
-
230 PRINT I
|
29
|
-
240 NEXT I
|
30
|
-
250 PRINT I
|
31
|
-
260 PRINT "NESTED"
|
32
|
-
270 FOR I = 0 TO 1
|
33
|
-
280 FOR J = 0 TO 1
|
34
|
-
290 PRINT I, J
|
35
|
-
300 NEXT J
|
36
|
-
310 NEXT I
|
37
|
-
320 PRINT "FLOAT"
|
38
|
-
330 FOR I = 0 TO 1 STEP 0.2
|
39
|
-
340 PRINT I
|
40
|
-
350 NEXT I
|
41
|
-
360 PRINT "BARE NEXT"
|
42
|
-
360 FOR I = 1 TO 2
|
43
|
-
370 PRINT I
|
44
|
-
380 NEXT
|
45
|
-
390 PRINT "NESTED, SHARED NEXT"
|
46
|
-
400 FOR I = 0 TO 1
|
47
|
-
410 FOR J = 0 TO 1
|
48
|
-
420 PRINT I, J
|
49
|
-
430 NEXT J, I
|
50
|
-
440 PRINT "OUT OF ORDER"
|
51
|
-
450 GOTO 480
|
52
|
-
460 NEXT I
|
53
|
-
470 GOTO 510
|
54
|
-
480 FOR I = 1 TO 2
|
55
|
-
490 PRINT I
|
56
|
-
500 GOTO 460
|
57
|
-
510 PRINT "RESTART"
|
58
|
-
520 FOR I = 10 TO 20
|
59
|
-
530 FOR I = 1 TO 2
|
60
|
-
540 PRINT I
|
61
|
-
550 NEXT I
|