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.
Files changed (528) hide show
  1. checksums.yaml +5 -5
  2. data/Changelog.md +14 -1
  3. data/Gemfile +3 -12
  4. data/Gemfile.lock +42 -76
  5. data/README.md +1 -1
  6. data/Rakefile +0 -8
  7. data/VERSION +1 -1
  8. data/basic101.gemspec +64 -664
  9. data/lib/basic101/abs_function.rb +2 -0
  10. data/lib/basic101/argument_checker.rb +2 -0
  11. data/lib/basic101/arguments.rb +2 -0
  12. data/lib/basic101/array_reference.rb +2 -0
  13. data/lib/basic101/asc_function.rb +2 -0
  14. data/lib/basic101/basic_array.rb +2 -0
  15. data/lib/basic101/basic_comparisons.rb +2 -0
  16. data/lib/basic101/basic_float.rb +2 -0
  17. data/lib/basic101/basic_integer.rb +2 -0
  18. data/lib/basic101/basic_math.rb +2 -0
  19. data/lib/basic101/basic_numeric.rb +2 -0
  20. data/lib/basic101/basic_object.rb +2 -0
  21. data/lib/basic101/basic_string.rb +2 -0
  22. data/lib/basic101/binary_operation.rb +2 -0
  23. data/lib/basic101/binary_operations.rb +2 -0
  24. data/lib/basic101/built_in_functions.rb +2 -0
  25. data/lib/basic101/chr_function.rb +2 -0
  26. data/lib/basic101/cos_function.rb +2 -0
  27. data/lib/basic101/data_statement.rb +2 -0
  28. data/lib/basic101/define_function_statement.rb +2 -0
  29. data/lib/basic101/dim_statement.rb +2 -0
  30. data/lib/basic101/else_statement.rb +2 -0
  31. data/lib/basic101/end_statement.rb +2 -0
  32. data/lib/basic101/endif_statement.rb +2 -0
  33. data/lib/basic101/errors.rb +2 -0
  34. data/lib/basic101/exp_function.rb +2 -0
  35. data/lib/basic101/for_stack.rb +2 -0
  36. data/lib/basic101/for_statement.rb +2 -0
  37. data/lib/basic101/function.rb +2 -0
  38. data/lib/basic101/function_call.rb +2 -0
  39. data/lib/basic101/function_identifier.rb +2 -0
  40. data/lib/basic101/functions.rb +2 -0
  41. data/lib/basic101/gosub_statement.rb +2 -0
  42. data/lib/basic101/goto_statement.rb +2 -0
  43. data/lib/basic101/identifier.rb +2 -0
  44. data/lib/basic101/identity.rb +2 -0
  45. data/lib/basic101/if_statement.rb +3 -0
  46. data/lib/basic101/input.rb +2 -0
  47. data/lib/basic101/input_reader.rb +3 -1
  48. data/lib/basic101/input_statement.rb +2 -0
  49. data/lib/basic101/int_function.rb +2 -0
  50. data/lib/basic101/left_function.rb +2 -0
  51. data/lib/basic101/len_function.rb +2 -0
  52. data/lib/basic101/let_statement.rb +2 -0
  53. data/lib/basic101/line.rb +2 -0
  54. data/lib/basic101/log_function.rb +2 -0
  55. data/lib/basic101/main.rb +2 -0
  56. data/lib/basic101/mid_function.rb +2 -0
  57. data/lib/basic101/negate_operation.rb +2 -0
  58. data/lib/basic101/next_statement.rb +2 -0
  59. data/lib/basic101/not_operation.rb +2 -0
  60. data/lib/basic101/null_prompt_delimeter.rb +2 -0
  61. data/lib/basic101/null_transcript.rb +2 -0
  62. data/lib/basic101/numeric_identifier.rb +2 -0
  63. data/lib/basic101/on_goto_statement.rb +2 -0
  64. data/lib/basic101/output.rb +2 -0
  65. data/lib/basic101/parser/data_statement.rb +2 -0
  66. data/lib/basic101/parser/define_function_statement.rb +2 -0
  67. data/lib/basic101/parser/dim_statement.rb +2 -0
  68. data/lib/basic101/parser/end_statement.rb +2 -0
  69. data/lib/basic101/parser/expression.rb +2 -0
  70. data/lib/basic101/parser/for_statement.rb +2 -0
  71. data/lib/basic101/parser/function_call.rb +2 -0
  72. data/lib/basic101/parser/gosub_statement.rb +2 -0
  73. data/lib/basic101/parser/goto_statement.rb +2 -0
  74. data/lib/basic101/parser/identifier.rb +2 -0
  75. data/lib/basic101/parser/if_statement.rb +2 -0
  76. data/lib/basic101/parser/input_statement.rb +2 -0
  77. data/lib/basic101/parser/let_statement.rb +2 -0
  78. data/lib/basic101/parser/next_statement.rb +2 -0
  79. data/lib/basic101/parser/numeric.rb +2 -0
  80. data/lib/basic101/parser/on_goto_statement.rb +2 -0
  81. data/lib/basic101/parser/print_statement.rb +2 -0
  82. data/lib/basic101/parser/program.rb +2 -0
  83. data/lib/basic101/parser/randomize_statement.rb +2 -0
  84. data/lib/basic101/parser/read_statement.rb +2 -0
  85. data/lib/basic101/parser/reference.rb +2 -0
  86. data/lib/basic101/parser/remark_statement.rb +2 -0
  87. data/lib/basic101/parser/restore_statement.rb +2 -0
  88. data/lib/basic101/parser/return_statement.rb +2 -0
  89. data/lib/basic101/parser/space.rb +2 -0
  90. data/lib/basic101/parser/statements.rb +2 -0
  91. data/lib/basic101/parser/stop_statement.rb +2 -0
  92. data/lib/basic101/parser/string.rb +2 -0
  93. data/lib/basic101/parser.rb +2 -0
  94. data/lib/basic101/power_operation.rb +2 -0
  95. data/lib/basic101/print_comma.rb +2 -0
  96. data/lib/basic101/print_semicolon.rb +2 -0
  97. data/lib/basic101/print_statement.rb +2 -0
  98. data/lib/basic101/program.rb +2 -0
  99. data/lib/basic101/program_counter.rb +2 -0
  100. data/lib/basic101/prompt_delimeter.rb +2 -0
  101. data/lib/basic101/randomize_statement.rb +2 -0
  102. data/lib/basic101/read_statement.rb +2 -0
  103. data/lib/basic101/reference.rb +2 -0
  104. data/lib/basic101/release.rb +13 -0
  105. data/lib/basic101/remark_statement.rb +2 -0
  106. data/lib/basic101/restore_statement.rb +2 -0
  107. data/lib/basic101/return_statement.rb +2 -0
  108. data/lib/basic101/right_function.rb +2 -0
  109. data/lib/basic101/rnd_function.rb +2 -0
  110. data/lib/basic101/runtime.rb +2 -0
  111. data/lib/basic101/scalar_reference.rb +2 -0
  112. data/lib/basic101/sgn_function.rb +2 -0
  113. data/lib/basic101/sin_function.rb +2 -0
  114. data/lib/basic101/sqr_function.rb +2 -0
  115. data/lib/basic101/statement.rb +2 -0
  116. data/lib/basic101/stop_statement.rb +2 -0
  117. data/lib/basic101/str_function.rb +2 -0
  118. data/lib/basic101/string_identifier.rb +2 -0
  119. data/lib/basic101/tab.rb +2 -0
  120. data/lib/basic101/tab_function.rb +2 -0
  121. data/lib/basic101/tan_function.rb +2 -0
  122. data/lib/basic101/transcript.rb +2 -0
  123. data/lib/basic101/transform.rb +2 -0
  124. data/lib/basic101/user_defined_function.rb +2 -0
  125. data/lib/basic101/val_function.rb +2 -0
  126. data/lib/basic101.rb +3 -0
  127. metadata +26 -445
  128. data/.rspec +0 -2
  129. data/.simplecov +0 -1
  130. data/.travis.yml +0 -4
  131. data/.yardopts +0 -7
  132. data/rake_tasks/default.rake +0 -1
  133. data/rake_tasks/integration.rake +0 -8
  134. data/rake_tasks/jeweler.rake +0 -28
  135. data/rake_tasks/spec.rake +0 -8
  136. data/rake_tasks/test.rake +0 -2
  137. data/rake_tasks/yard.rake +0 -3
  138. data/test/integration/arguments.rb +0 -25
  139. data/test/integration/errors.rb +0 -7
  140. data/test/integration/integration_test.rb +0 -28
  141. data/test/integration/main.rb +0 -49
  142. data/test/integration/output_file.rb +0 -40
  143. data/test/integration/test.rb +0 -135
  144. data/test/integration/tests/basic_computer_games/23-match.input +0 -1
  145. data/test/integration/tests/basic_computer_games/23-match.output +0 -29
  146. data/test/integration/tests/basic_computer_games/3dplot.input +0 -0
  147. data/test/integration/tests/basic_computer_games/3dplot.output +0 -47
  148. data/test/integration/tests/basic_computer_games/aceyducy.input +0 -8
  149. data/test/integration/tests/basic_computer_games/aceyducy.output +0 -78
  150. data/test/integration/tests/basic_computer_games/amazing.input +0 -1
  151. data/test/integration/tests/basic_computer_games/amazing.output +0 -32
  152. data/test/integration/tests/basic_computer_games/animal.input +0 -17
  153. data/test/integration/tests/basic_computer_games/animal.output +0 -38
  154. data/test/integration/tests/basic_computer_games/awari.input +0 -11
  155. data/test/integration/tests/basic_computer_games/awari.output +0 -117
  156. data/test/integration/tests/basic_computer_games/bagels.input +0 -12
  157. data/test/integration/tests/basic_computer_games/bagels.output +0 -42
  158. data/test/integration/tests/basic_computer_games/banner.input +0 -6
  159. data/test/integration/tests/basic_computer_games/banner.output +0 -135
  160. data/test/integration/tests/basic_computer_games/basketbl.input +0 -46
  161. data/test/integration/tests/basic_computer_games/basketbl.output +0 -509
  162. data/test/integration/tests/basic_computer_games/batnum.input +0 -14
  163. data/test/integration/tests/basic_computer_games/batnum.output +0 -67
  164. data/test/integration/tests/basic_computer_games/battle.input +0 -21
  165. data/test/integration/tests/basic_computer_games/battle.output +0 -118
  166. data/test/integration/tests/basic_computer_games/blackjck.input +0 -26
  167. data/test/integration/tests/basic_computer_games/blackjck.output +0 -144
  168. data/test/integration/tests/basic_computer_games/bombard.input +0 -20
  169. data/test/integration/tests/basic_computer_games/bombard.output +0 -175
  170. data/test/integration/tests/basic_computer_games/bounce.input +0 -0
  171. data/test/integration/tests/basic_computer_games/bounce.output +0 -15
  172. data/test/integration/tests/basic_computer_games/bowling.input +0 -23
  173. data/test/integration/tests/basic_computer_games/bowling.output +0 -229
  174. data/test/integration/tests/basic_computer_games/boxing.input +0 -8
  175. data/test/integration/tests/basic_computer_games/boxing.output +0 -47
  176. data/test/integration/tests/basic_computer_games/bug.input +0 -17
  177. data/test/integration/tests/basic_computer_games/bug.output +0 -847
  178. data/test/integration/tests/basic_computer_games/bullfght.input +0 -4
  179. data/test/integration/tests/basic_computer_games/bullfght.output +0 -60
  180. data/test/integration/tests/basic_computer_games/bullseye.input +0 -10
  181. data/test/integration/tests/basic_computer_games/bullseye.output +0 -79
  182. data/test/integration/tests/basic_computer_games/bunny.input +0 -0
  183. data/test/integration/tests/basic_computer_games/bunny.output +0 -67
  184. data/test/integration/tests/basic_computer_games/buzzword.input +0 -4
  185. data/test/integration/tests/basic_computer_games/buzzword.output +0 -25
  186. data/test/integration/tests/basic_computer_games/calendar.input +0 -0
  187. data/test/integration/tests/basic_computer_games/calendar.output +0 -213
  188. data/test/integration/tests/basic_computer_games/change.input +0 -4
  189. data/test/integration/tests/basic_computer_games/change.output +0 -28
  190. data/test/integration/tests/basic_computer_games/checkers.input +0 -74
  191. data/test/integration/tests/basic_computer_games/checkers.output +0 -673
  192. data/test/integration/tests/basic_computer_games/chemist.input +0 -11
  193. data/test/integration/tests/basic_computer_games/chemist.output +0 -54
  194. data/test/integration/tests/basic_computer_games/chief.input +0 -5
  195. data/test/integration/tests/basic_computer_games/chief.output +0 -19
  196. data/test/integration/tests/basic_computer_games/chomp.input +0 -15
  197. data/test/integration/tests/basic_computer_games/chomp.output +0 -159
  198. data/test/integration/tests/basic_computer_games/combat.input +0 -7
  199. data/test/integration/tests/basic_computer_games/combat.output +0 -33
  200. data/test/integration/tests/basic_computer_games/craps.input +0 -9
  201. data/test/integration/tests/basic_computer_games/craps.output +0 -51
  202. data/test/integration/tests/basic_computer_games/cube.input +0 -25
  203. data/test/integration/tests/basic_computer_games/cube.output +0 -72
  204. data/test/integration/tests/basic_computer_games/depthchg.input +0 -16
  205. data/test/integration/tests/basic_computer_games/depthchg.output +0 -83
  206. data/test/integration/tests/basic_computer_games/diamond.input +0 -1
  207. data/test/integration/tests/basic_computer_games/diamond.output +0 -65
  208. data/test/integration/tests/basic_computer_games/dice.input +0 -4
  209. data/test/integration/tests/basic_computer_games/dice.output +0 -46
  210. data/test/integration/tests/basic_computer_games/digits.input +0 -5
  211. data/test/integration/tests/basic_computer_games/digits.output +0 -70
  212. data/test/integration/tests/basic_computer_games/evenwin1.input +0 -13
  213. data/test/integration/tests/basic_computer_games/evenwin1.output +0 -116
  214. data/test/integration/tests/basic_computer_games/evenwin2.input +0 -14
  215. data/test/integration/tests/basic_computer_games/evenwin2.output +0 -56
  216. data/test/integration/tests/basic_computer_games/flipflop.input +0 -8
  217. data/test/integration/tests/basic_computer_games/flipflop.output +0 -45
  218. data/test/integration/tests/basic_computer_games/footbal1.input +0 -13
  219. data/test/integration/tests/basic_computer_games/footbal1.output +0 -315
  220. data/test/integration/tests/basic_computer_games/footbal2.input +0 -23
  221. data/test/integration/tests/basic_computer_games/footbal2.output +0 -318
  222. data/test/integration/tests/basic_computer_games/furtradr.input +0 -20
  223. data/test/integration/tests/basic_computer_games/furtradr.output +0 -133
  224. data/test/integration/tests/basic_computer_games/golf.input +0 -11
  225. data/test/integration/tests/basic_computer_games/golf.output +0 -69
  226. data/test/integration/tests/basic_computer_games/gomoko.input +0 -6
  227. data/test/integration/tests/basic_computer_games/gomoko.output +0 -66
  228. data/test/integration/tests/basic_computer_games/guess.input +0 -8
  229. data/test/integration/tests/basic_computer_games/guess.output +0 -37
  230. data/test/integration/tests/basic_computer_games/gunner.input +0 -18
  231. data/test/integration/tests/basic_computer_games/gunner.output +0 -91
  232. data/test/integration/tests/basic_computer_games/hamurabi.input +0 -7
  233. data/test/integration/tests/basic_computer_games/hamurabi.output +0 -51
  234. data/test/integration/tests/basic_computer_games/hangman.input +0 -69
  235. data/test/integration/tests/basic_computer_games/hangman.output +0 -889
  236. data/test/integration/tests/basic_computer_games/hello.input +0 -7
  237. data/test/integration/tests/basic_computer_games/hello.output +0 -46
  238. data/test/integration/tests/basic_computer_games/hexapawn.input +0 -38
  239. data/test/integration/tests/basic_computer_games/hexapawn.output +0 -521
  240. data/test/integration/tests/basic_computer_games/hi-q.input +0 -14
  241. data/test/integration/tests/basic_computer_games/hi-q.output +0 -115
  242. data/test/integration/tests/basic_computer_games/hilo.input +0 -20
  243. data/test/integration/tests/basic_computer_games/hilo.output +0 -76
  244. data/test/integration/tests/basic_computer_games/hockey.input +0 -59
  245. data/test/integration/tests/basic_computer_games/hockey.output +0 -243
  246. data/test/integration/tests/basic_computer_games/horsrace.input +0 -11
  247. data/test/integration/tests/basic_computer_games/horsrace.output +0 -517
  248. data/test/integration/tests/basic_computer_games/hurkle.input +0 -16
  249. data/test/integration/tests/basic_computer_games/hurkle.output +0 -81
  250. data/test/integration/tests/basic_computer_games/kinema.input +0 -9
  251. data/test/integration/tests/basic_computer_games/kinema.output +0 -64
  252. data/test/integration/tests/basic_computer_games/king.input +0 -7
  253. data/test/integration/tests/basic_computer_games/king.output +0 -57
  254. data/test/integration/tests/basic_computer_games/lem.input +0 -4
  255. data/test/integration/tests/basic_computer_games/lem.output +0 -68
  256. data/test/integration/tests/basic_computer_games/letter.input +0 -24
  257. data/test/integration/tests/basic_computer_games/letter.output +0 -123
  258. data/test/integration/tests/basic_computer_games/life.input +0 -4
  259. data/test/integration/tests/basic_computer_games/life.options +0 -1
  260. data/test/integration/tests/basic_computer_games/life.output +0 -200
  261. data/test/integration/tests/basic_computer_games/life2.input +0 -17
  262. data/test/integration/tests/basic_computer_games/life2.output +0 -113
  263. data/test/integration/tests/basic_computer_games/litquiz.input +0 -4
  264. data/test/integration/tests/basic_computer_games/litquiz.output +0 -36
  265. data/test/integration/tests/basic_computer_games/love.input +0 -1
  266. data/test/integration/tests/basic_computer_games/love.output +0 -67
  267. data/test/integration/tests/basic_computer_games/lunar.input +0 -87
  268. data/test/integration/tests/basic_computer_games/lunar.output +0 -195
  269. data/test/integration/tests/basic_computer_games/mastrmnd.input +0 -18
  270. data/test/integration/tests/basic_computer_games/mastrmnd.output +0 -67
  271. data/test/integration/tests/basic_computer_games/mathdice.input +0 -4
  272. data/test/integration/tests/basic_computer_games/mathdice.output +0 -86
  273. data/test/integration/tests/basic_computer_games/mugwump.input +0 -16
  274. data/test/integration/tests/basic_computer_games/mugwump.output +0 -139
  275. data/test/integration/tests/basic_computer_games/name.input +0 -2
  276. data/test/integration/tests/basic_computer_games/name.output +0 -22
  277. data/test/integration/tests/basic_computer_games/nicoma.input +0 -8
  278. data/test/integration/tests/basic_computer_games/nicoma.output +0 -36
  279. data/test/integration/tests/basic_computer_games/nim.input +0 -8
  280. data/test/integration/tests/basic_computer_games/nim.output +0 -30
  281. data/test/integration/tests/basic_computer_games/number.input +0 -19
  282. data/test/integration/tests/basic_computer_games/number.output +0 -73
  283. data/test/integration/tests/basic_computer_games/onecheck.input +0 -6
  284. data/test/integration/tests/basic_computer_games/onecheck.output +0 -77
  285. data/test/integration/tests/basic_computer_games/orbit.input +0 -10
  286. data/test/integration/tests/basic_computer_games/orbit.output +0 -113
  287. data/test/integration/tests/basic_computer_games/pizza.input +0 -10
  288. data/test/integration/tests/basic_computer_games/pizza.output +0 -93
  289. data/test/integration/tests/basic_computer_games/poetry.input +0 -0
  290. data/test/integration/tests/basic_computer_games/poetry.options +0 -1
  291. data/test/integration/tests/basic_computer_games/poetry.output +0 -50
  292. data/test/integration/tests/basic_computer_games/poker.input +0 -34
  293. data/test/integration/tests/basic_computer_games/poker.output +0 -197
  294. data/test/integration/tests/basic_computer_games/queen.input +0 -10
  295. data/test/integration/tests/basic_computer_games/queen.output +0 -133
  296. data/test/integration/tests/basic_computer_games/reverse.input +0 -12
  297. data/test/integration/tests/basic_computer_games/reverse.output +0 -79
  298. data/test/integration/tests/basic_computer_games/rocket.input +0 -42
  299. data/test/integration/tests/basic_computer_games/rocket.output +0 -149
  300. data/test/integration/tests/basic_computer_games/rocksp.input +0 -9
  301. data/test/integration/tests/basic_computer_games/rocksp.output +0 -69
  302. data/test/integration/tests/basic_computer_games/roulette.input +0 -9
  303. data/test/integration/tests/basic_computer_games/roulette.output +0 -98
  304. data/test/integration/tests/basic_computer_games/rusrou.input +0 -9
  305. data/test/integration/tests/basic_computer_games/rusrou.output +0 -50
  306. data/test/integration/tests/basic_computer_games/salvo.input +0 -21
  307. data/test/integration/tests/basic_computer_games/salvo.output +0 -49
  308. data/test/integration/tests/basic_computer_games/sinewave.input +0 -0
  309. data/test/integration/tests/basic_computer_games/sinewave.output +0 -168
  310. data/test/integration/tests/basic_computer_games/slalom.input +0 -20
  311. data/test/integration/tests/basic_computer_games/slalom.output +0 -122
  312. data/test/integration/tests/basic_computer_games/slots.input +0 -2
  313. data/test/integration/tests/basic_computer_games/slots.output +0 -20
  314. data/test/integration/tests/basic_computer_games/splat.input +0 -9
  315. data/test/integration/tests/basic_computer_games/splat.output +0 -61
  316. data/test/integration/tests/basic_computer_games/stars.input +0 -15
  317. data/test/integration/tests/basic_computer_games/stars.output +0 -70
  318. data/test/integration/tests/basic_computer_games/stock.input +0 -30
  319. data/test/integration/tests/basic_computer_games/stock.output +0 -156
  320. data/test/integration/tests/basic_computer_games/superstartrek.input +0 -21
  321. data/test/integration/tests/basic_computer_games/superstartrek.output +0 -151
  322. data/test/integration/tests/basic_computer_games/superstartrekins.input +0 -1
  323. data/test/integration/tests/basic_computer_games/superstartrekins.output +0 -134
  324. data/test/integration/tests/basic_computer_games/synonym.input +0 -13
  325. data/test/integration/tests/basic_computer_games/synonym.output +0 -57
  326. data/test/integration/tests/basic_computer_games/target.input +0 -2
  327. data/test/integration/tests/basic_computer_games/target.output +0 -39
  328. data/test/integration/tests/basic_computer_games/tictac1.input +0 -10
  329. data/test/integration/tests/basic_computer_games/tictac1.output +0 -49
  330. data/test/integration/tests/basic_computer_games/tictac2.input +0 -6
  331. data/test/integration/tests/basic_computer_games/tictac2.output +0 -104
  332. data/test/integration/tests/basic_computer_games/towers.input +0 -9
  333. data/test/integration/tests/basic_computer_games/towers.output +0 -70
  334. data/test/integration/tests/basic_computer_games/train.input +0 -4
  335. data/test/integration/tests/basic_computer_games/train.output +0 -23
  336. data/test/integration/tests/basic_computer_games/trap.input +0 -7
  337. data/test/integration/tests/basic_computer_games/trap.output +0 -40
  338. data/test/integration/tests/basic_computer_games/war.input +0 -11
  339. data/test/integration/tests/basic_computer_games/war.output +0 -54
  340. data/test/integration/tests/basic_computer_games/weekday.input +0 -2
  341. data/test/integration/tests/basic_computer_games/weekday.output +0 -28
  342. data/test/integration/tests/basic_computer_games/word.input +0 -6
  343. data/test/integration/tests/basic_computer_games/word.output +0 -0
  344. data/test/integration/tests/fast/abs.bas +0 -5
  345. data/test/integration/tests/fast/abs.input +0 -0
  346. data/test/integration/tests/fast/abs.output +0 -5
  347. data/test/integration/tests/fast/add.bas +0 -5
  348. data/test/integration/tests/fast/add.input +0 -0
  349. data/test/integration/tests/fast/add.output +0 -5
  350. data/test/integration/tests/fast/and.bas +0 -5
  351. data/test/integration/tests/fast/and.input +0 -0
  352. data/test/integration/tests/fast/and.output +0 -5
  353. data/test/integration/tests/fast/array.bas +0 -11
  354. data/test/integration/tests/fast/array.input +0 -0
  355. data/test/integration/tests/fast/array.output +0 -6
  356. data/test/integration/tests/fast/asc.bas +0 -1
  357. data/test/integration/tests/fast/asc.input +0 -0
  358. data/test/integration/tests/fast/asc.output +0 -1
  359. data/test/integration/tests/fast/chr.bas +0 -1
  360. data/test/integration/tests/fast/chr.input +0 -0
  361. data/test/integration/tests/fast/chr.output +0 -1
  362. data/test/integration/tests/fast/cos.bas +0 -1
  363. data/test/integration/tests/fast/cos.input +0 -0
  364. data/test/integration/tests/fast/cos.output +0 -1
  365. data/test/integration/tests/fast/def_fn.bas +0 -9
  366. data/test/integration/tests/fast/def_fn.input +0 -0
  367. data/test/integration/tests/fast/def_fn.output +0 -5
  368. data/test/integration/tests/fast/divide.bas +0 -5
  369. data/test/integration/tests/fast/divide.input +0 -0
  370. data/test/integration/tests/fast/divide.output +0 -5
  371. data/test/integration/tests/fast/end.bas +0 -3
  372. data/test/integration/tests/fast/end.input +0 -0
  373. data/test/integration/tests/fast/end.output +0 -1
  374. data/test/integration/tests/fast/eq.bas +0 -3
  375. data/test/integration/tests/fast/eq.input +0 -0
  376. data/test/integration/tests/fast/eq.output +0 -3
  377. data/test/integration/tests/fast/exp.bas +0 -2
  378. data/test/integration/tests/fast/exp.input +0 -0
  379. data/test/integration/tests/fast/exp.output +0 -2
  380. data/test/integration/tests/fast/float.bas +0 -3
  381. data/test/integration/tests/fast/float.input +0 -0
  382. data/test/integration/tests/fast/float.output +0 -2
  383. data/test/integration/tests/fast/for_next.bas +0 -61
  384. data/test/integration/tests/fast/for_next.input +0 -0
  385. data/test/integration/tests/fast/for_next.output +0 -46
  386. data/test/integration/tests/fast/ge.bas +0 -3
  387. data/test/integration/tests/fast/ge.input +0 -0
  388. data/test/integration/tests/fast/ge.output +0 -3
  389. data/test/integration/tests/fast/gosub_return.bas +0 -10
  390. data/test/integration/tests/fast/gosub_return.input +0 -0
  391. data/test/integration/tests/fast/gosub_return.output +0 -4
  392. data/test/integration/tests/fast/goto.bas +0 -3
  393. data/test/integration/tests/fast/goto.input +0 -0
  394. data/test/integration/tests/fast/goto.output +0 -1
  395. data/test/integration/tests/fast/gt.bas +0 -3
  396. data/test/integration/tests/fast/gt.input +0 -0
  397. data/test/integration/tests/fast/gt.output +0 -3
  398. data/test/integration/tests/fast/if.bas +0 -25
  399. data/test/integration/tests/fast/if.input +0 -0
  400. data/test/integration/tests/fast/if.output +0 -8
  401. data/test/integration/tests/fast/input.bas +0 -24
  402. data/test/integration/tests/fast/input.input +0 -10
  403. data/test/integration/tests/fast/input.output +0 -28
  404. data/test/integration/tests/fast/int.bas +0 -5
  405. data/test/integration/tests/fast/int.input +0 -0
  406. data/test/integration/tests/fast/int.output +0 -5
  407. data/test/integration/tests/fast/integer_plus_string.bas +0 -1
  408. data/test/integration/tests/fast/integer_plus_string.input +0 -0
  409. data/test/integration/tests/fast/integer_plus_string.output +0 -1
  410. data/test/integration/tests/fast/invalid_argument.bas +0 -1
  411. data/test/integration/tests/fast/invalid_argument.input +0 -0
  412. data/test/integration/tests/fast/invalid_argument.output +0 -1
  413. data/test/integration/tests/fast/le.bas +0 -3
  414. data/test/integration/tests/fast/le.input +0 -0
  415. data/test/integration/tests/fast/le.output +0 -3
  416. data/test/integration/tests/fast/left.bas +0 -1
  417. data/test/integration/tests/fast/left.input +0 -0
  418. data/test/integration/tests/fast/left.output +0 -1
  419. data/test/integration/tests/fast/len.bas +0 -2
  420. data/test/integration/tests/fast/len.input +0 -0
  421. data/test/integration/tests/fast/len.output +0 -2
  422. data/test/integration/tests/fast/let.bas +0 -6
  423. data/test/integration/tests/fast/let.input +0 -0
  424. data/test/integration/tests/fast/let.output +0 -4
  425. data/test/integration/tests/fast/log.bas +0 -1
  426. data/test/integration/tests/fast/log.input +0 -0
  427. data/test/integration/tests/fast/log.output +0 -1
  428. data/test/integration/tests/fast/lt.bas +0 -3
  429. data/test/integration/tests/fast/lt.input +0 -0
  430. data/test/integration/tests/fast/lt.output +0 -3
  431. data/test/integration/tests/fast/math.output +0 -0
  432. data/test/integration/tests/fast/mid.bas +0 -2
  433. data/test/integration/tests/fast/mid.input +0 -0
  434. data/test/integration/tests/fast/mid.output +0 -2
  435. data/test/integration/tests/fast/multiply.bas +0 -5
  436. data/test/integration/tests/fast/multiply.input +0 -0
  437. data/test/integration/tests/fast/multiply.output +0 -5
  438. data/test/integration/tests/fast/ne.bas +0 -3
  439. data/test/integration/tests/fast/ne.input +0 -0
  440. data/test/integration/tests/fast/ne.output +0 -3
  441. data/test/integration/tests/fast/negate.bas +0 -4
  442. data/test/integration/tests/fast/negate.input +0 -0
  443. data/test/integration/tests/fast/negate.output +0 -3
  444. data/test/integration/tests/fast/not.bas +0 -4
  445. data/test/integration/tests/fast/not.input +0 -0
  446. data/test/integration/tests/fast/not.output +0 -4
  447. data/test/integration/tests/fast/on_goto.bas +0 -6
  448. data/test/integration/tests/fast/on_goto.input +0 -0
  449. data/test/integration/tests/fast/on_goto.output +0 -2
  450. data/test/integration/tests/fast/or.bas +0 -5
  451. data/test/integration/tests/fast/or.input +0 -0
  452. data/test/integration/tests/fast/or.output +0 -5
  453. data/test/integration/tests/fast/parentheses.bas +0 -1
  454. data/test/integration/tests/fast/parentheses.input +0 -0
  455. data/test/integration/tests/fast/parentheses.output +0 -1
  456. data/test/integration/tests/fast/power.bas +0 -4
  457. data/test/integration/tests/fast/power.input +0 -0
  458. data/test/integration/tests/fast/power.output +0 -4
  459. data/test/integration/tests/fast/print.bas +0 -6
  460. data/test/integration/tests/fast/print.input +0 -0
  461. data/test/integration/tests/fast/print.output +0 -4
  462. data/test/integration/tests/fast/read_data.bas +0 -15
  463. data/test/integration/tests/fast/read_data.input +0 -0
  464. data/test/integration/tests/fast/read_data.output +0 -4
  465. data/test/integration/tests/fast/rem.bas +0 -1
  466. data/test/integration/tests/fast/rem.input +0 -0
  467. data/test/integration/tests/fast/rem.output +0 -0
  468. data/test/integration/tests/fast/right.bas +0 -1
  469. data/test/integration/tests/fast/right.input +0 -0
  470. data/test/integration/tests/fast/right.output +0 -1
  471. data/test/integration/tests/fast/rnd.bas +0 -5
  472. data/test/integration/tests/fast/rnd.input +0 -0
  473. data/test/integration/tests/fast/rnd.output +0 -5
  474. data/test/integration/tests/fast/sgn.bas +0 -5
  475. data/test/integration/tests/fast/sgn.input +0 -0
  476. data/test/integration/tests/fast/sgn.output +0 -5
  477. data/test/integration/tests/fast/sin.bas +0 -1
  478. data/test/integration/tests/fast/sin.input +0 -0
  479. data/test/integration/tests/fast/sin.output +0 -1
  480. data/test/integration/tests/fast/sqr.bas +0 -2
  481. data/test/integration/tests/fast/sqr.input +0 -0
  482. data/test/integration/tests/fast/sqr.output +0 -2
  483. data/test/integration/tests/fast/stop.bas +0 -3
  484. data/test/integration/tests/fast/stop.input +0 -0
  485. data/test/integration/tests/fast/stop.output +0 -2
  486. data/test/integration/tests/fast/str.bas +0 -3
  487. data/test/integration/tests/fast/str.input +0 -0
  488. data/test/integration/tests/fast/str.output +0 -3
  489. data/test/integration/tests/fast/string_addition.bas +0 -1
  490. data/test/integration/tests/fast/string_addition.input +0 -0
  491. data/test/integration/tests/fast/string_addition.output +0 -1
  492. data/test/integration/tests/fast/string_comparisons.bas +0 -7
  493. data/test/integration/tests/fast/string_comparisons.input +0 -0
  494. data/test/integration/tests/fast/string_comparisons.output +0 -4
  495. data/test/integration/tests/fast/string_plus_integer.bas +0 -1
  496. data/test/integration/tests/fast/string_plus_integer.input +0 -0
  497. data/test/integration/tests/fast/string_plus_integer.output +0 -1
  498. data/test/integration/tests/fast/subtract.bas +0 -5
  499. data/test/integration/tests/fast/subtract.input +0 -0
  500. data/test/integration/tests/fast/subtract.output +0 -5
  501. data/test/integration/tests/fast/tab.bas +0 -4
  502. data/test/integration/tests/fast/tab.input +0 -0
  503. data/test/integration/tests/fast/tab.output +0 -3
  504. data/test/integration/tests/fast/tan.bas +0 -1
  505. data/test/integration/tests/fast/tan.input +0 -0
  506. data/test/integration/tests/fast/tan.output +0 -1
  507. data/test/integration/tests/fast/val.bas +0 -3
  508. data/test/integration/tests/fast/val.input +0 -0
  509. data/test/integration/tests/fast/val.output +0 -3
  510. data/test/spec/argument_checker_spec.rb +0 -128
  511. data/test/spec/basic_array_spec.rb +0 -100
  512. data/test/spec/basic_float_spec.rb +0 -168
  513. data/test/spec/basic_integer_spec.rb +0 -270
  514. data/test/spec/basic_numeric_spec.rb +0 -16
  515. data/test/spec/basic_object_spec.rb +0 -22
  516. data/test/spec/basic_string_spec.rb +0 -259
  517. data/test/spec/for_stack_spec.rb +0 -70
  518. data/test/spec/input_reader_spec.rb +0 -143
  519. data/test/spec/input_spec.rb +0 -102
  520. data/test/spec/line_spec.rb +0 -18
  521. data/test/spec/output_spec.rb +0 -153
  522. data/test/spec/parser_spec.rb +0 -562
  523. data/test/spec/program_spec.rb +0 -45
  524. data/test/spec/spec_helper.rb +0 -16
  525. data/test/spec/support/basic_numeric_helpers.rb +0 -327
  526. data/test/spec/support/basic_object_helpers.rb +0 -22
  527. data/test/spec/transcript_spec.rb +0 -37
  528. data/test/spec/transform_spec.rb +0 -513
@@ -1,67 +0,0 @@
1
- LOVE
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- A TRIBUTE TO THE GREAT AMERICAN ARTIST, ROBERT INDIANA.
7
- HIS GREATEST WORK WILL BE REPRODUCED WITH A MESSAGE OF
8
- YOUR CHOICE UP TO 60 CHARACTERS. IF YOU CAN'T THINK OF
9
- A MESSAGE, SIMPLE TYPE THE WORD 'LOVE'
10
-
11
- YOUR MESSAGE, PLEASE? ILIKEHIPPIES
12
-
13
-
14
-
15
-
16
-
17
-
18
-
19
-
20
-
21
-
22
-
23
- ILIKEHIPPIESILIKEHIPPIESILIKEHIPPIESILIKEHIPPIESILIKEHIPPIES
24
- I LIKEHIPPIESILIKEHIPPIESILI ILIKEHIPPIES
25
- ILI SILIKEHIPPIESILIKEHIPPIE EHIPPIES
26
- ILIK ESILIKEHIPPIESILIKEHIPP IPPIES
27
- ILIK ESILIKEHIPPIESILIKEHIP PIESI PPIES
28
- ILIK ESILIKEHIPPIESILIKEHI IPPIESIL PIES
29
- ILIK ESILIKEHIPPIESILIKEHI HIPPIESILI PIES
30
- ILIK ESILIKEHIPPIESILIKEHI EHIPPIESILI PIES
31
- ILIK ESILIKEHIPPIESILIKEHI KEHIPPIESIL PIES
32
- ILIK ESILIKEHIPPIESILIKEHI IKEHIPPIESI PIES
33
- ILIK ESILIKEHIPPIESILIKEHI LIKEHIPPIES PIES
34
- ILIK ESILIKEHIPPIESILIKE I ILIKEHIPPIE PIES
35
- ILIK ESILIKEHIPPIESILIKE I ILIKEHIPPI PIES
36
- ILIK ESILIKEHIPPIESILIK I LIKEHIPP PIES
37
- ILIK ESILIKEHIPPIESILI I IKEHI PIES
38
- ILIK ESILIKEHIPPIESI IP PPIES
39
- I IPPIE EHIPPIES
40
- I IPPIESILI ILIKEHIPPIES
41
- I IKEHI S
42
- I IKEHI S
43
- ILIK ESILIKEHIPPIE IKEHIPPIES IPPIESILIKEH S
44
- ILIKE SILIKEHIPPI LIKEHIPPIES IPPIESILIKEHIP S
45
- ILIKE SILIKEHIPPI LIKEHIPPIES IPPIESILIKEHIPP S
46
- ILIKEH ILIKEHIPP ILIKEHIPPIES IPPIESILIKEHIPPI S
47
- ILIKEH ILIKEHIPP ILIKEHIPPIES IPPIESI IKEHIPPIES
48
- ILIKEHI LIKEHIP SILIKEHIPPIES IPPIES IKEHIPPIES
49
- ILIKEHI LIKEHIP SILIKEHIPPIES IKEHIPPIES
50
- ILIKEHIP IKEHI ESILIKEHIPPIES IPPIES IKEHIPPIES
51
- ILIKEHIP IKEHI ESILIKEHIPPIES IPPIESI IKEHIPPIES
52
- ILIKEHIPP KEH IESILIKEHIPPIES IPPIESILIKEHIPPI S
53
- ILIKEHIPP KEH IESILIKEHIPPIES IPPIESILIKEHIPP S
54
- ILIKEHIPPI E PIESILIKEHIPPIES IPPIESILIKEHIP S
55
- ILIKEHIPPI PIESILIKEHIPPIES IPPIESILIKEH S
56
- ILIKEHIPPIE PPIESILIKEHIP S
57
- ILIKEHIPPIE PPIESILIKEHIP S
58
- ILIKEHIPPIESILIKEHIPPIESILIKEHIPPIESILIKEHIPPIESILIKEHIPPIES
59
-
60
-
61
-
62
-
63
-
64
-
65
-
66
-
67
-
@@ -1,87 +0,0 @@
1
- 0
2
- 0
3
- 0
4
- 0
5
- 100
6
- 100
7
- 100
8
- 100
9
- 100
10
- 100
11
- 100
12
- 100
13
- 100
14
- 100
15
- 100
16
- 0
17
- 0
18
- 0
19
- 100
20
- 100
21
- 100
22
- 100
23
- 100
24
- 100
25
- 100
26
- 100
27
- 100
28
- 100
29
- 100
30
- 100
31
- 100
32
- 100
33
- 0
34
- 0
35
- 100
36
- 100
37
- 100
38
- 100
39
- 100
40
- 100
41
- 100
42
- 100
43
- 100
44
- 100
45
- 100
46
- 100
47
- 100
48
- 100
49
- 100
50
- 100
51
- 0
52
- 0
53
- 20
54
- 0
55
- 10
56
- 0
57
- 5
58
- 6
59
- 6
60
- 7
61
- 0
62
- 0
63
- 100
64
- 100
65
- 100
66
- 100
67
- 100
68
- 100
69
- 100
70
- 100
71
- 100
72
- 100
73
- 100
74
- 100
75
- 100
76
- 100
77
- 100
78
- 20
79
- 10
80
- 10
81
- 10
82
- 10
83
- 10
84
- 10
85
- 10
86
- 50
87
- 10
@@ -1,195 +0,0 @@
1
- LUNAR
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- THIS IS A COMPUTER SIMULATION OF AN APOLLO LUNAR
7
- LANDING CAPSULE.
8
-
9
-
10
- THE ON-BOARD COMPUTER HAS FAILED (IT WAS MADE BY
11
- XEROX) SO YOU HAVE TO LAND THE CAPSULE MANUALLY.
12
-
13
- SET BURN RATE OF RETRO ROCKETS TO ANY VALUE BETWEEN
14
- 0 (FREE FALL) AND 200 (MAXIMUM BURN) POUNDS PER SECOND.
15
- SET NEW BURN RATE EVERY 10 SECONDS.
16
-
17
- CAPSULE WEIGHT 32,500 LBS; FUEL WEIGHT 16,500 LBS.
18
-
19
-
20
-
21
- GOOD LUCK
22
-
23
- SEC MI + FT MPH LB FUEL BURN RATE
24
-
25
- 0 120 0 3600 16500 ? 0
26
- 10 109 5016 3636 16500 ? 0
27
- 20 99 4224 3672 16500 ? 0
28
- 30 89 2904 3708 16500 ? 0
29
- 40 79 1056 3744 16500 ? 100
30
- 50 69 134 3580.6 15500 ? 100
31
- 60 59 1656 3410.868 14500 ? 100
32
- 70 50 435 3234.39 13500 ? 100
33
- 80 41 1855 3050.708 12500 ? 100
34
- 90 33 745 2859.316 11500 ? 100
35
- 100 25 2502 2659.654 10500 ? 100
36
- 110 18 1972 2451.097 9500 ? 100
37
- 120 11 4570 2232.946 8500 ? 100
38
- 130 5 5163 2004.42 7500 ? 100
39
- 140 0 3909 1764.634 6500 ? 100
40
- ON MOON AT 141.5269 SECONDS - IMPACT VELOCITY 1726.968 MPH
41
- SORRY THERE NERE NO SURVIVORS. YOU BLOW IT!
42
- IN FACT, YOU BLASTED A NEW LUNAR CRATER 392.0218 FEET DEEP!
43
-
44
-
45
-
46
- TRY AGAIN??
47
-
48
- SET BURN RATE OF RETRO ROCKETS TO ANY VALUE BETWEEN
49
- 0 (FREE FALL) AND 200 (MAXIMUM BURN) POUNDS PER SECOND.
50
- SET NEW BURN RATE EVERY 10 SECONDS.
51
-
52
- CAPSULE WEIGHT 32,500 LBS; FUEL WEIGHT 16,500 LBS.
53
-
54
-
55
-
56
- GOOD LUCK
57
-
58
- SEC MI + FT MPH LB FUEL BURN RATE
59
-
60
- 0 120 0 3600 16500 ? 0
61
- 10 109 5016 3636 16500 ? 0
62
- 20 99 4224 3672 16500 ? 0
63
- 30 89 2904 3708 16500 ? 100
64
- 40 79 2510 3544.6 15500 ? 100
65
- 50 69 4560 3374.868 14500 ? 100
66
- 60 60 3867 3198.39 13500 ? 100
67
- 70 52 535 3014.708 12500 ? 100
68
- 80 43 5233 2823.316 11500 ? 100
69
- 90 36 2238 2623.654 10500 ? 100
70
- 100 29 2236 2415.097 9500 ? 100
71
- 110 23 82 2196.946 8500 ? 100
72
- 120 17 1203 1968.42 7500 ? 100
73
- 130 12 477 1728.634 6500 ? 100
74
- 140 7 3357 1476.586 5500 ? 100
75
- 150 3 4750 1211.136 4500 ? 100
76
- 160 0 4862 930.9762 3500 ? 100
77
- ON MOON AT 163.7841 SECONDS - IMPACT VELOCITY 820.8196 MPH
78
- SORRY THERE NERE NO SURVIVORS. YOU BLOW IT!
79
- IN FACT, YOU BLASTED A NEW LUNAR CRATER 186.326 FEET DEEP!
80
-
81
-
82
-
83
- TRY AGAIN??
84
-
85
- SET BURN RATE OF RETRO ROCKETS TO ANY VALUE BETWEEN
86
- 0 (FREE FALL) AND 200 (MAXIMUM BURN) POUNDS PER SECOND.
87
- SET NEW BURN RATE EVERY 10 SECONDS.
88
-
89
- CAPSULE WEIGHT 32,500 LBS; FUEL WEIGHT 16,500 LBS.
90
-
91
-
92
-
93
- GOOD LUCK
94
-
95
- SEC MI + FT MPH LB FUEL BURN RATE
96
-
97
- 0 120 0 3600 16500 ? 0
98
- 10 109 5016 3636 16500 ? 0
99
- 20 99 4224 3672 16500 ? 100
100
- 30 89 4358 3508.6 15500 ? 100
101
- 40 80 1656 3338.868 14500 ? 100
102
- 50 71 1491 3162.39 13500 ? 100
103
- 60 62 3967 2978.708 12500 ? 100
104
- 70 54 3913 2787.316 11500 ? 100
105
- 80 47 1446 2587.654 10500 ? 100
106
- 90 40 1972 2379.097 9500 ? 100
107
- 100 34 346 2160.946 8500 ? 100
108
- 110 28 1995 1932.42 7500 ? 100
109
- 120 23 1797 1692.634 6500 ? 100
110
- 130 18 5205 1440.586 5500 ? 100
111
- 140 15 1846 1175.136 4500 ? 100
112
- 150 12 2486 894.9762 3500 ? 100
113
- 160 10 2072 598.5957 2500 ? 100
114
- 170 9 855 284.2401 1500 ? 100
115
- 180 8 4392 -50.14642 500 ? 0
116
- 190 8 4864 -14.14642 500 ? 0
117
- 200 8 4807 21.85358 500 ? 20
118
- 210 8 4784 -18.8337 300 ? 0
119
- 220 8 4796 17.1663 300 ? 10
120
- 230 8 4564 14.47961 200 ? 0
121
- 240 8 4088 50.47961 200 ? 5
122
- 250 8 3226 67.04931 150 ? 6
123
- 260 8 2150 79.65579 90 ? 6
124
- 270 8 889 92.1775 30 ? 7
125
- FUEL OUT AT 274.2857 SECONDS
126
- ON MOON AT 377.3643 SECONDS - IMPACT VELOCITY 466.9177 MPH
127
- SORRY THERE NERE NO SURVIVORS. YOU BLOW IT!
128
- IN FACT, YOU BLASTED A NEW LUNAR CRATER 105.9903 FEET DEEP!
129
-
130
-
131
-
132
- TRY AGAIN??
133
-
134
- SET BURN RATE OF RETRO ROCKETS TO ANY VALUE BETWEEN
135
- 0 (FREE FALL) AND 200 (MAXIMUM BURN) POUNDS PER SECOND.
136
- SET NEW BURN RATE EVERY 10 SECONDS.
137
-
138
- CAPSULE WEIGHT 32,500 LBS; FUEL WEIGHT 16,500 LBS.
139
-
140
-
141
-
142
- GOOD LUCK
143
-
144
- SEC MI + FT MPH LB FUEL BURN RATE
145
-
146
- 0 120 0 3600 16500 ? 0
147
- 10 109 5016 3636 16500 ? 0
148
- 20 99 4224 3672 16500 ? 100
149
- 30 89 4358 3508.6 15500 ? 100
150
- 40 80 1656 3338.868 14500 ? 100
151
- 50 71 1491 3162.39 13500 ? 100
152
- 60 62 3967 2978.708 12500 ? 100
153
- 70 54 3913 2787.316 11500 ? 100
154
- 80 47 1446 2587.654 10500 ? 100
155
- 90 40 1972 2379.097 9500 ? 100
156
- 100 34 346 2160.946 8500 ? 100
157
- 110 28 1995 1932.42 7500 ? 100
158
- 120 23 1797 1692.634 6500 ? 100
159
- 130 18 5205 1440.586 5500 ? 100
160
- 140 15 1846 1175.136 4500 ? 100
161
- 150 12 2486 894.9762 3500 ? 100
162
- 160 10 2072 598.5957 2500 ? 100
163
- 170 9 855 284.2401 1500 ? 20
164
- 180 8 2232 247.8371 1300 ? 10
165
- 190 7 3880 247.33 1200 ? 10
166
- 200 7 258 246.616 1100 ? 10
167
- 210 6 1927 245.6928 1000 ? 10
168
- 220 5 3612 244.558 900 ? 10
169
- 230 5 35 243.2092 800 ? 10
170
- 240 4 1759 241.6439 700 ? 10
171
- 250 3 3508 239.8595 600 ? 50
172
- 260 3 1129 83.56057 100 ? 10
173
- FUEL OUT AT 270 SECONDS
174
- ON MOON AT 328.108 SECONDS - IMPACT VELOCITY 289.5952 MPH
175
- SORRY THERE NERE NO SURVIVORS. YOU BLOW IT!
176
- IN FACT, YOU BLASTED A NEW LUNAR CRATER 65.7381 FEET DEEP!
177
-
178
-
179
-
180
- TRY AGAIN??
181
-
182
- SET BURN RATE OF RETRO ROCKETS TO ANY VALUE BETWEEN
183
- 0 (FREE FALL) AND 200 (MAXIMUM BURN) POUNDS PER SECOND.
184
- SET NEW BURN RATE EVERY 10 SECONDS.
185
-
186
- CAPSULE WEIGHT 32,500 LBS; FUEL WEIGHT 16,500 LBS.
187
-
188
-
189
-
190
- GOOD LUCK
191
-
192
- SEC MI + FT MPH LB FUEL BURN RATE
193
-
194
- 0 120 0 3600 16500 ?
195
- Error on line 150: No more input
@@ -1,18 +0,0 @@
1
- 6
2
- 4
3
- 12
4
- BBBB
5
- WWWW
6
- RRRR
7
- GGGG
8
- OOOO
9
- WBBB
10
- BWBB
11
- BBWB
12
- GGWO
13
- GOWG
14
-
15
- 1,0
16
- 0,0
17
- 0,0
18
- 4,0
@@ -1,67 +0,0 @@
1
- MASTERMIND
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- NUMBER OF COLORS? 6
7
- NUMBER OF POSITIONS? 4
8
- NUMBER OF ROUNDS? 12
9
- TOTAL POSSIBILITIES = 1296
10
-
11
-
12
- COLOR LETTER
13
- ===== ======
14
- BLACK B
15
- WHITE W
16
- RED R
17
- GREEN G
18
- ORANGE O
19
- YELLOW Y
20
-
21
-
22
- ROUND NUMBER 1 ----
23
-
24
- GUESS MY COMBINATION.
25
-
26
- MOVE # 1 GUESS ? BBBB
27
- YOU HAVE 0 BLACKS AND 0 WHITES.
28
- MOVE # 2 GUESS ? WWWW
29
- YOU HAVE 1 BLACKS AND 0 WHITES.
30
- MOVE # 3 GUESS ? RRRR
31
- YOU HAVE 0 BLACKS AND 0 WHITES.
32
- MOVE # 4 GUESS ? GGGG
33
- YOU HAVE 2 BLACKS AND 0 WHITES.
34
- MOVE # 5 GUESS ? OOOO
35
- YOU HAVE 1 BLACKS AND 0 WHITES.
36
- MOVE # 6 GUESS ? WBBB
37
- YOU HAVE 0 BLACKS AND 1 WHITES.
38
- MOVE # 7 GUESS ? BWBB
39
- YOU HAVE 0 BLACKS AND 1 WHITES.
40
- MOVE # 8 GUESS ? BBWB
41
- YOU HAVE 1 BLACKS AND 0 WHITES.
42
- MOVE # 9 GUESS ? GGWO
43
- YOU HAVE 2 BLACKS AND 2 WHITES.
44
- MOVE # 10 GUESS ? GOWG
45
- YOU GUESSED IT IN 10 MOVES!
46
- SCORE:
47
- COMPUTER 0
48
- HUMAN 10
49
-
50
- NOW I GUESS. THINK OF A COMBINATION.
51
- HIT RETURN WHEN READY:?
52
- MY GUESS IS: ROWO BLACKS, WHITES ? 1,0
53
- MY GUESS IS: GOGG BLACKS, WHITES ? 0,0
54
- MY GUESS IS: RBBY BLACKS, WHITES ? 0,0
55
- MY GUESS IS: WWWW BLACKS, WHITES ? 4,0
56
- I GOT IT IN 4 MOVES!
57
- SCORE:
58
- COMPUTER 4
59
- HUMAN 10
60
-
61
-
62
- ROUND NUMBER 2 ----
63
-
64
- GUESS MY COMBINATION.
65
-
66
- MOVE # 1 GUESS ?
67
- Error on line 380: No more input
@@ -1,86 +0,0 @@
1
- MATH DICE
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- THIS PROGRAM GENERATES SUCCESIVE PICTURES OF TWO DICE.
7
- WHEN TWO DICE AND AN EQUAL SIGN FOLLOWED BY A QUESTION
8
- MARK HAVE BEEN PRINTED, TYPE YOUR ANSWER AND THE RETURN KEY.
9
- TO CONCLUDE THE LESSON, TYPE CONTROL-C AS YOUR ANSWER.
10
-
11
-
12
- -----
13
- I * * I
14
- I I
15
- I * * I
16
- -----
17
-
18
- +
19
-
20
- -----
21
- I * * I
22
- I * I
23
- I * * I
24
- -----
25
-
26
- =? 9
27
- RIGHT!
28
-
29
- THE DICE ROLL AGAIN...
30
-
31
- -----
32
- I * * I
33
- I I
34
- I * * I
35
- -----
36
-
37
- +
38
-
39
- -----
40
- I * * I
41
- I I
42
- I * * I
43
- -----
44
-
45
- =? 8
46
- RIGHT!
47
-
48
- THE DICE ROLL AGAIN...
49
-
50
- -----
51
- I * I
52
- I * I
53
- I * I
54
- -----
55
-
56
- +
57
-
58
- -----
59
- I * * I
60
- I I
61
- I * * I
62
- -----
63
-
64
- =? 1
65
- NO, COUNT THE SPOTS AND GIVE ANOTHER ANSWER.
66
- =? 7
67
- RIGHT!
68
-
69
- THE DICE ROLL AGAIN...
70
-
71
- -----
72
- I * I
73
- I * I
74
- I * I
75
- -----
76
-
77
- +
78
-
79
- -----
80
- I * * I
81
- I * * I
82
- I * * I
83
- -----
84
-
85
- =?
86
- Error on line 520: No more input
@@ -1,16 +0,0 @@
1
- 0,0
2
- 10,0
3
- 5,4
4
- 7,6
5
- 6,4
6
- 5,8
7
- 1,1
8
- 2,2
9
- 3,3
10
- 4,4
11
- 5,5
12
- 6,6
13
- 7,7
14
- 8,8
15
- 9,9
16
- 10,10
@@ -1,139 +0,0 @@
1
- MUGWUMP
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- THE OBJECT OF THIS GAME IS TO FIND FOUR MUGWUMPS
7
- HIDDEN ON A 10 BY 10 GRID. HOMEBASE IS POSITION 0,0.
8
- ANY GUESS YOU MAKE MUST BE TWO NUMBERS WITH EACH
9
- NUMBER BETWEEN 0 AND 9, INCLUSIVE. FIRST NUMBER
10
- IS DISTANCE TO RIGHT OF HOMEBASE AND SECOND NUMBER
11
- IS DISTANCE ABOVE HOMEBASE.
12
-
13
- YOU GET 10 TRIES. AFTER EACH TRY, I WILL TELL
14
- YOU HOW FAR YOU ARE FROM EACH MUGWUMP.
15
-
16
-
17
-
18
- TURN NO. 1 -- WHAT IS YOUR GUESS? 0,0
19
- YOU ARE 6.4 UNITS FROM MUGWUMP 1
20
- YOU ARE 9.2 UNITS FROM MUGWUMP 2
21
- YOU ARE 7.2 UNITS FROM MUGWUMP 3
22
- YOU ARE 9.4 UNITS FROM MUGWUMP 4
23
-
24
-
25
- TURN NO. 2 -- WHAT IS YOUR GUESS? 10,0
26
- YOU ARE 6.4 UNITS FROM MUGWUMP 1
27
- YOU ARE 6.7 UNITS FROM MUGWUMP 2
28
- YOU ARE 5.6 UNITS FROM MUGWUMP 3
29
- YOU ARE 9.4 UNITS FROM MUGWUMP 4
30
-
31
-
32
- TURN NO. 3 -- WHAT IS YOUR GUESS? 5,4
33
- YOU HAVE FOUND MUGWUMP 1
34
- YOU ARE 2.8 UNITS FROM MUGWUMP 2
35
- YOU ARE 1 UNITS FROM MUGWUMP 3
36
- YOU ARE 4 UNITS FROM MUGWUMP 4
37
-
38
-
39
- TURN NO. 4 -- WHAT IS YOUR GUESS? 7,6
40
- YOU HAVE FOUND MUGWUMP 2
41
- YOU ARE 2.2 UNITS FROM MUGWUMP 3
42
- YOU ARE 2.8 UNITS FROM MUGWUMP 4
43
-
44
-
45
- TURN NO. 5 -- WHAT IS YOUR GUESS? 6,4
46
- YOU HAVE FOUND MUGWUMP 3
47
- YOU ARE 4.1 UNITS FROM MUGWUMP 4
48
-
49
-
50
- TURN NO. 6 -- WHAT IS YOUR GUESS? 5,8
51
- YOU HAVE FOUND MUGWUMP 4
52
-
53
- YOU GOT THEM ALL IN 6 TURNS!
54
-
55
- THAT WAS FUN! LET'S PLAY AGAIN.......
56
- FOUR MORE MUGWUMPS ARE NOW IN HIDING.
57
-
58
-
59
- TURN NO. 1 -- WHAT IS YOUR GUESS? 1,1
60
- YOU ARE 8.9 UNITS FROM MUGWUMP 1
61
- YOU ARE 8.2 UNITS FROM MUGWUMP 2
62
- YOU ARE 6 UNITS FROM MUGWUMP 3
63
- YOU ARE 4.1 UNITS FROM MUGWUMP 4
64
-
65
-
66
- TURN NO. 2 -- WHAT IS YOUR GUESS? 2,2
67
- YOU ARE 7.6 UNITS FROM MUGWUMP 1
68
- YOU ARE 7 UNITS FROM MUGWUMP 2
69
- YOU ARE 5.3 UNITS FROM MUGWUMP 3
70
- YOU ARE 3.6 UNITS FROM MUGWUMP 4
71
-
72
-
73
- TURN NO. 3 -- WHAT IS YOUR GUESS? 3,3
74
- YOU ARE 6.3 UNITS FROM MUGWUMP 1
75
- YOU ARE 6 UNITS FROM MUGWUMP 2
76
- YOU ARE 5 UNITS FROM MUGWUMP 3
77
- YOU ARE 3.6 UNITS FROM MUGWUMP 4
78
-
79
-
80
- TURN NO. 4 -- WHAT IS YOUR GUESS? 4,4
81
- YOU ARE 5 UNITS FROM MUGWUMP 1
82
- YOU ARE 5 UNITS FROM MUGWUMP 2
83
- YOU ARE 5 UNITS FROM MUGWUMP 3
84
- YOU ARE 4.1 UNITS FROM MUGWUMP 4
85
-
86
-
87
- TURN NO. 5 -- WHAT IS YOUR GUESS? 5,5
88
- YOU ARE 4 UNITS FROM MUGWUMP 1
89
- YOU ARE 4.4 UNITS FROM MUGWUMP 2
90
- YOU ARE 5.3 UNITS FROM MUGWUMP 3
91
- YOU ARE 5 UNITS FROM MUGWUMP 4
92
-
93
-
94
- TURN NO. 6 -- WHAT IS YOUR GUESS? 6,6
95
- YOU ARE 3.1 UNITS FROM MUGWUMP 1
96
- YOU ARE 4.2 UNITS FROM MUGWUMP 2
97
- YOU ARE 6 UNITS FROM MUGWUMP 3
98
- YOU ARE 6 UNITS FROM MUGWUMP 4
99
-
100
-
101
- TURN NO. 7 -- WHAT IS YOUR GUESS? 7,7
102
- YOU ARE 2.8 UNITS FROM MUGWUMP 1
103
- YOU ARE 4.4 UNITS FROM MUGWUMP 2
104
- YOU ARE 7 UNITS FROM MUGWUMP 3
105
- YOU ARE 7.2 UNITS FROM MUGWUMP 4
106
-
107
-
108
- TURN NO. 8 -- WHAT IS YOUR GUESS? 8,8
109
- YOU ARE 3.1 UNITS FROM MUGWUMP 1
110
- YOU ARE 5 UNITS FROM MUGWUMP 2
111
- YOU ARE 8 UNITS FROM MUGWUMP 3
112
- YOU ARE 8.5 UNITS FROM MUGWUMP 4
113
-
114
-
115
- TURN NO. 9 -- WHAT IS YOUR GUESS? 9,9
116
- YOU ARE 4 UNITS FROM MUGWUMP 1
117
- YOU ARE 6 UNITS FROM MUGWUMP 2
118
- YOU ARE 9.2 UNITS FROM MUGWUMP 3
119
- YOU ARE 9.8 UNITS FROM MUGWUMP 4
120
-
121
-
122
- TURN NO. 10 -- WHAT IS YOUR GUESS? 10,10
123
- YOU ARE 5 UNITS FROM MUGWUMP 1
124
- YOU ARE 7 UNITS FROM MUGWUMP 2
125
- YOU ARE 10.4 UNITS FROM MUGWUMP 3
126
- YOU ARE 11.1 UNITS FROM MUGWUMP 4
127
-
128
- SORRY, THAT'S 10 TRIES. HERE IS WHERE THEY'RE HIDING:
129
- MUGWUMP 1 IS AT ( 9 , 5 )
130
- MUGWUMP 2 IS AT ( 3 , 9 )
131
- MUGWUMP 3 IS AT ( 7 , 0 )
132
- MUGWUMP 4 IS AT ( 5 , 0 )
133
-
134
- THAT WAS FUN! LET'S PLAY AGAIN.......
135
- FOUR MORE MUGWUMPS ARE NOW IN HIDING.
136
-
137
-
138
- TURN NO. 1 -- WHAT IS YOUR GUESS?
139
- Error on line 300: No more input
@@ -1,2 +0,0 @@
1
- FRED FLINSTONE
2
- YES
@@ -1,22 +0,0 @@
1
- NAME
2
- CREATIVE COMPUTING MORRISTOWN, NEW JERSEY
3
-
4
-
5
-
6
- HELLO.
7
- MY NAME IS CREATIVE COMPUTER.
8
- WHAT'S YOUR NAME (FIRST AND LAST? FRED FLINSTONE
9
-
10
- THANK YOU, ENOTSNILF DERF.
11
- OOPS! I GUESS I GOT IT BACKWARDS. A SMART
12
- COMPUTER LIKE ME SHOULDN'T MAKE A MISTAKE LIKE THAT!
13
-
14
- BUT I JUST NOTICED YOUR LETTERS ARE OUT OF ORDER.
15
- LET'S PUT THEM IN ORDER LIKE THIS: DEEFFILNNORST
16
-
17
- DON'T YOU LIKE THAT BETTER? YES
18
-
19
- I KNEW YOU'D AGREE!!
20
-
21
- I REALLY ENJOYED MEETING YOU FRED FLINSTONE.
22
- HAVE A NICE DAY!