basic101 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +4 -0
  3. data/Changelog.md +9 -1
  4. data/Gemfile +9 -8
  5. data/Gemfile.lock +66 -53
  6. data/README.md +8 -6
  7. data/VERSION +1 -1
  8. data/basic101.gemspec +688 -0
  9. data/lib/basic101/parser.rb +28 -457
  10. data/lib/basic101/parser/data_statement.rb +20 -0
  11. data/lib/basic101/parser/define_function_statement.rb +18 -0
  12. data/lib/basic101/parser/dim_statement.rb +16 -0
  13. data/lib/basic101/parser/end_statement.rb +11 -0
  14. data/lib/basic101/parser/expression.rb +100 -0
  15. data/lib/basic101/parser/for_statement.rb +17 -0
  16. data/lib/basic101/parser/function_call.rb +13 -0
  17. data/lib/basic101/parser/gosub_statement.rb +12 -0
  18. data/lib/basic101/parser/goto_statement.rb +11 -0
  19. data/lib/basic101/parser/identifier.rb +87 -0
  20. data/lib/basic101/parser/if_statement.rb +20 -0
  21. data/lib/basic101/parser/input_statement.rb +19 -0
  22. data/lib/basic101/parser/let_statement.rb +13 -0
  23. data/lib/basic101/parser/next_statement.rb +16 -0
  24. data/lib/basic101/parser/numeric.rb +34 -0
  25. data/lib/basic101/parser/on_goto_statement.rb +20 -0
  26. data/lib/basic101/parser/print_statement.rb +19 -0
  27. data/lib/basic101/parser/program.rb +17 -0
  28. data/lib/basic101/parser/randomize_statement.rb +11 -0
  29. data/lib/basic101/parser/read_statement.rb +12 -0
  30. data/lib/basic101/parser/reference.rb +36 -0
  31. data/lib/basic101/parser/remark_statement.rb +11 -0
  32. data/lib/basic101/parser/restore_statement.rb +12 -0
  33. data/lib/basic101/parser/return_statement.rb +11 -0
  34. data/lib/basic101/parser/space.rb +23 -0
  35. data/lib/basic101/parser/statements.rb +36 -0
  36. data/lib/basic101/parser/stop_statement.rb +11 -0
  37. data/lib/basic101/parser/string.rb +17 -0
  38. data/test/spec/basic_float_spec.rb +2 -2
  39. data/test/spec/basic_object_spec.rb +1 -1
  40. data/test/spec/basic_string_spec.rb +2 -2
  41. data/test/spec/input_reader_spec.rb +11 -11
  42. data/test/spec/input_spec.rb +5 -5
  43. data/test/spec/output_spec.rb +3 -3
  44. data/test/spec/spec_helper.rb +2 -1
  45. data/test/spec/support/basic_numeric_helpers.rb +3 -3
  46. metadata +82 -34
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d0355e1988ae20d00a0a3253c149ed9d2180f7e
4
- data.tar.gz: be79cbe45db13921b8dcddd8c6e8107ae76e77ef
3
+ metadata.gz: 4231bd3894d83744f90c561ef3ef699444dd235f
4
+ data.tar.gz: 9b1c8a1a5997c8b0a9d33144fec0bd6710c65435
5
5
  SHA512:
6
- metadata.gz: 482e5fcaac1a1899df3ec190a5d9d9812cfad970871a29a291607a8335a526d7261943e0bda00782cf1a2472bf7ae4e85dbbcbe0898ec0a8bde1dc9112a03f54
7
- data.tar.gz: 5a208126bb3501bc19f0a9bb51d2c62393d44ca9c8c628ff67f99e106877e0c1cf58ef0dd87178a706c65c216d875027dcbb774b1d8a7559f6167882203a3ec0
6
+ metadata.gz: 5aa4e847c3fc0e373b0a6c865d4406c7884bae416a9f18196fb5f7d72eedd798b61667e388d1193bf4c93e10c96039b73bf9257f13b35ca1078e64f1b41fc90f
7
+ data.tar.gz: 9a08d0bda35d08a84c2f397a62a111b07efd14d0b7dababe9d199186607ac13ca9086d4181d1b0b5373ae69598a128811b735386c3da7280ff72b01ff15da787
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - "2.0"
4
+ - "2.1"
data/Changelog.md CHANGED
@@ -1,3 +1,11 @@
1
- ### 0.1.0
1
+ # 0.3.0 2014-12-13
2
+
3
+ * Update gems
4
+
5
+ # 0.2.0
6
+
7
+ * Versions in Gemfile dependencies
8
+
9
+ # 0.1.0
2
10
 
3
11
  Initial release
data/Gemfile CHANGED
@@ -1,12 +1,13 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
- gem 'parslet'
3
+ gem "parslet", "~> 1.5"
4
4
 
5
5
  group :development do
6
- gem 'jeweler'
7
- gem 'rake'
8
- gem 'redcarpet'
9
- gem 'rspec'
10
- gem 'simplecov', :require => false, :group => :test
11
- gem 'yard'
6
+ gem "jeweler", "~> 2.0"
7
+ gem "rake", "~> 10.4"
8
+ gem "redcarpet", "~> 3.2"
9
+ gem "rspec", "~> 3.1"
10
+ gem "rspec-its", "~> 1.1"
11
+ gem "simplecov", "~> 0.9", :require => false, :group => :test
12
+ gem "yard", "~> 0.8.7"
12
13
  end
data/Gemfile.lock CHANGED
@@ -1,75 +1,88 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- addressable (2.3.5)
5
- blankslate (2.1.2.4)
4
+ addressable (2.3.6)
5
+ blankslate (3.1.3)
6
6
  builder (3.2.2)
7
- diff-lcs (1.2.4)
8
- faraday (0.8.8)
9
- multipart-post (~> 1.2.0)
10
- git (1.2.6)
11
- github_api (0.10.1)
12
- addressable
13
- faraday (~> 0.8.1)
14
- hashie (>= 1.2)
15
- multi_json (~> 1.4)
16
- nokogiri (~> 1.5.2)
7
+ descendants_tracker (0.0.4)
8
+ thread_safe (~> 0.3, >= 0.3.1)
9
+ diff-lcs (1.2.5)
10
+ docile (1.1.5)
11
+ faraday (0.9.0)
12
+ multipart-post (>= 1.2, < 3)
13
+ git (1.2.8)
14
+ github_api (0.12.2)
15
+ addressable (~> 2.3)
16
+ descendants_tracker (~> 0.0.4)
17
+ faraday (~> 0.8, < 0.10)
18
+ hashie (>= 3.3)
19
+ multi_json (>= 1.7.5, < 2.0)
20
+ nokogiri (~> 1.6.3)
17
21
  oauth2
18
- hashie (2.0.5)
19
- highline (1.6.20)
20
- httpauth (0.2.0)
21
- jeweler (1.8.8)
22
+ hashie (3.3.2)
23
+ highline (1.6.21)
24
+ jeweler (2.0.1)
22
25
  builder
23
- bundler (~> 1.0)
26
+ bundler (>= 1.0)
24
27
  git (>= 1.2.5)
25
- github_api (= 0.10.1)
28
+ github_api
26
29
  highline (>= 1.6.15)
27
- nokogiri (= 1.5.10)
30
+ nokogiri (>= 1.5.10)
28
31
  rake
29
32
  rdoc
30
33
  json (1.8.1)
31
- jwt (0.1.8)
32
- multi_json (>= 1.5)
33
- multi_json (1.8.2)
34
+ jwt (1.2.0)
35
+ mini_portile (0.6.1)
36
+ multi_json (1.10.1)
34
37
  multi_xml (0.5.5)
35
- multipart-post (1.2.0)
36
- nokogiri (1.5.10)
37
- oauth2 (0.9.2)
38
- faraday (~> 0.8)
39
- httpauth (~> 0.2)
40
- jwt (~> 0.1.4)
41
- multi_json (~> 1.0)
38
+ multipart-post (2.0.0)
39
+ nokogiri (1.6.5)
40
+ mini_portile (~> 0.6.0)
41
+ oauth2 (1.0.0)
42
+ faraday (>= 0.8, < 0.10)
43
+ jwt (~> 1.0)
44
+ multi_json (~> 1.3)
42
45
  multi_xml (~> 0.5)
43
46
  rack (~> 1.2)
44
- parslet (1.5.0)
45
- blankslate (~> 2.0)
47
+ parslet (1.6.2)
48
+ blankslate (>= 2.0, <= 4.0)
46
49
  rack (1.5.2)
47
- rake (10.1.0)
48
- rdoc (4.0.1)
50
+ rake (10.4.2)
51
+ rdoc (4.2.0)
49
52
  json (~> 1.4)
50
- redcarpet (3.0.0)
51
- rspec (2.14.1)
52
- rspec-core (~> 2.14.0)
53
- rspec-expectations (~> 2.14.0)
54
- rspec-mocks (~> 2.14.0)
55
- rspec-core (2.14.5)
56
- rspec-expectations (2.14.2)
57
- diff-lcs (>= 1.1.3, < 2.0)
58
- rspec-mocks (2.14.3)
59
- simplecov (0.7.1)
53
+ redcarpet (3.2.2)
54
+ rspec (3.1.0)
55
+ rspec-core (~> 3.1.0)
56
+ rspec-expectations (~> 3.1.0)
57
+ rspec-mocks (~> 3.1.0)
58
+ rspec-core (3.1.7)
59
+ rspec-support (~> 3.1.0)
60
+ rspec-expectations (3.1.2)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.1.0)
63
+ rspec-its (1.1.0)
64
+ rspec-core (>= 3.0.0)
65
+ rspec-expectations (>= 3.0.0)
66
+ rspec-mocks (3.1.3)
67
+ rspec-support (~> 3.1.0)
68
+ rspec-support (3.1.2)
69
+ simplecov (0.9.1)
70
+ docile (~> 1.1.0)
60
71
  multi_json (~> 1.0)
61
- simplecov-html (~> 0.7.1)
62
- simplecov-html (0.7.1)
63
- yard (0.8.7.1)
72
+ simplecov-html (~> 0.8.0)
73
+ simplecov-html (0.8.0)
74
+ thread_safe (0.3.4)
75
+ yard (0.8.7.6)
64
76
 
65
77
  PLATFORMS
66
78
  ruby
67
79
 
68
80
  DEPENDENCIES
69
- jeweler
70
- parslet
71
- rake
72
- redcarpet
73
- rspec
74
- simplecov
75
- yard
81
+ jeweler (~> 2.0)
82
+ parslet (~> 1.5)
83
+ rake (~> 10.4)
84
+ redcarpet (~> 3.2)
85
+ rspec (~> 3.1)
86
+ rspec-its (~> 1.1)
87
+ simplecov (~> 0.9)
88
+ yard (~> 0.8.7)
data/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # Basic101 [![Code Climate](https://codeclimate.com/github/wconrad/basic101.png)](https://codeclimate.com/github/wconrad/basic101) [![Build Status](https://travis-ci.org/wconrad/basic101.png)](https://travis-ci.org/wconrad/basic101)
1
+ # Basic101
2
+ [![Gem Version](https://badge.fury.io/rb/basic101.png)](http://badge.fury.io/rb/basic101)
3
+ [![Dependency Status](https://gemnasium.com/wconrad/basic101.svg)](https://gemnasium.com/wconrad/basic101)
4
+ [![Code Climate](https://codeclimate.com/github/wconrad/basic101.png)](https://codeclimate.com/github/wconrad/basic101)
5
+ [![Build Status](https://travis-ci.org/wconrad/basic101.png)](https://travis-ci.org/wconrad/basic101)
2
6
 
3
7
  basic101 is a circa 1980 BASIC interpreter written in Ruby. It
4
8
  supports a modified subset of Microsoft's BASIC-80 v. 5 and runs
@@ -20,7 +24,7 @@ Microcomputer Edition_][2] is perfect because:
20
24
 
21
25
  * The book contains short transcripts of each program running.
22
26
 
23
- ### What parser?
27
+ ### Which parser?
24
28
 
25
29
  This interpreter uses [Parslet][12], a Ruby library for [Parsing
26
30
  Expression Grammars][11] (PEG). Parslet has several attractive
@@ -30,7 +34,7 @@ properties:
30
34
  makes possible the dynamic generation of parse and transform rules.
31
35
 
32
36
  * It has an [elegant mechanism][14] for transforming the [parse
33
- tree][17] into an [abstract syntax tree][13].
37
+ tree][15] into an [abstract syntax tree][13].
34
38
 
35
39
  ## Installation
36
40
 
@@ -188,6 +192,4 @@ Wayne Conrad <wconrad@yagni.com>
188
192
  [12]: http://kschiess.github.io/parslet/
189
193
  [13]: http://en.wikipedia.org/wiki/Abstract_syntax_tree
190
194
  [14]: http://kschiess.github.io/parslet/transform.html
191
- [15]: http://en.wikipedia.org/wiki/Fortran#FORTRAN_66
192
- [16]: http://www.fh-jena.de/~kleine/history/languages/ansi-x3dot9-1966-Fortran66.pdf
193
- [17]: http://en.wikipedia.org/wiki/Parse_tree
195
+ [15]: http://en.wikipedia.org/wiki/Parse_tree
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.2.0
data/basic101.gemspec ADDED
@@ -0,0 +1,688 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+ # stub: basic101 0.2.0 ruby lib
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "basic101"
9
+ s.version = "0.2.0"
10
+
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
13
+ s.authors = ["Wayne Conrad"]
14
+ s.date = "2014-12-13"
15
+ s.description = "[![Gem Version](https://badge.fury.io/rb/basic101.png)](http://badge.fury.io/rb/basic101) [![Dependency Status](https://gemnasium.com/wconrad/basic101.svg)](https://gemnasium.com/wconrad/basic101) [![Code Climate](https://codeclimate.com/github/wconrad/basic101.png)](https://codeclimate.com/github/wconrad/basic101) [![Build Status](https://travis-ci.org/wconrad/basic101.png)](https://travis-ci.org/wconrad/basic101) basic101 is a circa 1980 BASIC interpreter written in Ruby. It supports a modified subset of Microsoft's BASIC-80 v. 5 and runs the games published in Basic Computer Games, Microcomputer Edition by David H. Ahl"
16
+ s.email = "wconrad@yagni.com"
17
+ s.executables = ["basic101"]
18
+ s.extra_rdoc_files = [
19
+ "LICENSE.md",
20
+ "README.md"
21
+ ]
22
+ s.files = [
23
+ ".rspec",
24
+ ".simplecov",
25
+ ".travis.yml",
26
+ ".yardopts",
27
+ "Changelog.md",
28
+ "Gemfile",
29
+ "Gemfile.lock",
30
+ "LICENSE.md",
31
+ "README.md",
32
+ "Rakefile",
33
+ "VERSION",
34
+ "basic101.gemspec",
35
+ "bin/basic101",
36
+ "lib/basic101.rb",
37
+ "lib/basic101/abs_function.rb",
38
+ "lib/basic101/argument_checker.rb",
39
+ "lib/basic101/arguments.rb",
40
+ "lib/basic101/array_reference.rb",
41
+ "lib/basic101/asc_function.rb",
42
+ "lib/basic101/basic_array.rb",
43
+ "lib/basic101/basic_comparisons.rb",
44
+ "lib/basic101/basic_float.rb",
45
+ "lib/basic101/basic_integer.rb",
46
+ "lib/basic101/basic_math.rb",
47
+ "lib/basic101/basic_numeric.rb",
48
+ "lib/basic101/basic_object.rb",
49
+ "lib/basic101/basic_string.rb",
50
+ "lib/basic101/binary_operation.rb",
51
+ "lib/basic101/binary_operations.rb",
52
+ "lib/basic101/built_in_functions.rb",
53
+ "lib/basic101/chr_function.rb",
54
+ "lib/basic101/cos_function.rb",
55
+ "lib/basic101/data_statement.rb",
56
+ "lib/basic101/define_function_statement.rb",
57
+ "lib/basic101/dim_statement.rb",
58
+ "lib/basic101/else_statement.rb",
59
+ "lib/basic101/end_statement.rb",
60
+ "lib/basic101/endif_statement.rb",
61
+ "lib/basic101/errors.rb",
62
+ "lib/basic101/exp_function.rb",
63
+ "lib/basic101/for_stack.rb",
64
+ "lib/basic101/for_statement.rb",
65
+ "lib/basic101/function.rb",
66
+ "lib/basic101/function_call.rb",
67
+ "lib/basic101/function_identifier.rb",
68
+ "lib/basic101/functions.rb",
69
+ "lib/basic101/gosub_statement.rb",
70
+ "lib/basic101/goto_statement.rb",
71
+ "lib/basic101/identifier.rb",
72
+ "lib/basic101/identity.rb",
73
+ "lib/basic101/if_statement.rb",
74
+ "lib/basic101/input.rb",
75
+ "lib/basic101/input_reader.rb",
76
+ "lib/basic101/input_statement.rb",
77
+ "lib/basic101/int_function.rb",
78
+ "lib/basic101/left_function.rb",
79
+ "lib/basic101/len_function.rb",
80
+ "lib/basic101/let_statement.rb",
81
+ "lib/basic101/line.rb",
82
+ "lib/basic101/log_function.rb",
83
+ "lib/basic101/main.rb",
84
+ "lib/basic101/mid_function.rb",
85
+ "lib/basic101/negate_operation.rb",
86
+ "lib/basic101/next_statement.rb",
87
+ "lib/basic101/not_operation.rb",
88
+ "lib/basic101/null_prompt_delimeter.rb",
89
+ "lib/basic101/null_transcript.rb",
90
+ "lib/basic101/numeric_identifier.rb",
91
+ "lib/basic101/on_goto_statement.rb",
92
+ "lib/basic101/output.rb",
93
+ "lib/basic101/parser.rb",
94
+ "lib/basic101/parser/data_statement.rb",
95
+ "lib/basic101/parser/define_function_statement.rb",
96
+ "lib/basic101/parser/dim_statement.rb",
97
+ "lib/basic101/parser/end_statement.rb",
98
+ "lib/basic101/parser/expression.rb",
99
+ "lib/basic101/parser/for_statement.rb",
100
+ "lib/basic101/parser/function_call.rb",
101
+ "lib/basic101/parser/gosub_statement.rb",
102
+ "lib/basic101/parser/goto_statement.rb",
103
+ "lib/basic101/parser/identifier.rb",
104
+ "lib/basic101/parser/if_statement.rb",
105
+ "lib/basic101/parser/input_statement.rb",
106
+ "lib/basic101/parser/let_statement.rb",
107
+ "lib/basic101/parser/next_statement.rb",
108
+ "lib/basic101/parser/numeric.rb",
109
+ "lib/basic101/parser/on_goto_statement.rb",
110
+ "lib/basic101/parser/print_statement.rb",
111
+ "lib/basic101/parser/program.rb",
112
+ "lib/basic101/parser/randomize_statement.rb",
113
+ "lib/basic101/parser/read_statement.rb",
114
+ "lib/basic101/parser/reference.rb",
115
+ "lib/basic101/parser/remark_statement.rb",
116
+ "lib/basic101/parser/restore_statement.rb",
117
+ "lib/basic101/parser/return_statement.rb",
118
+ "lib/basic101/parser/space.rb",
119
+ "lib/basic101/parser/statements.rb",
120
+ "lib/basic101/parser/stop_statement.rb",
121
+ "lib/basic101/parser/string.rb",
122
+ "lib/basic101/power_operation.rb",
123
+ "lib/basic101/print_comma.rb",
124
+ "lib/basic101/print_semicolon.rb",
125
+ "lib/basic101/print_statement.rb",
126
+ "lib/basic101/program.rb",
127
+ "lib/basic101/program_counter.rb",
128
+ "lib/basic101/prompt_delimeter.rb",
129
+ "lib/basic101/randomize_statement.rb",
130
+ "lib/basic101/read_statement.rb",
131
+ "lib/basic101/reference.rb",
132
+ "lib/basic101/remark_statement.rb",
133
+ "lib/basic101/restore_statement.rb",
134
+ "lib/basic101/return_statement.rb",
135
+ "lib/basic101/right_function.rb",
136
+ "lib/basic101/rnd_function.rb",
137
+ "lib/basic101/runtime.rb",
138
+ "lib/basic101/scalar_reference.rb",
139
+ "lib/basic101/sgn_function.rb",
140
+ "lib/basic101/sin_function.rb",
141
+ "lib/basic101/sqr_function.rb",
142
+ "lib/basic101/statement.rb",
143
+ "lib/basic101/stop_statement.rb",
144
+ "lib/basic101/str_function.rb",
145
+ "lib/basic101/string_identifier.rb",
146
+ "lib/basic101/tab.rb",
147
+ "lib/basic101/tab_function.rb",
148
+ "lib/basic101/tan_function.rb",
149
+ "lib/basic101/transcript.rb",
150
+ "lib/basic101/transform.rb",
151
+ "lib/basic101/user_defined_function.rb",
152
+ "lib/basic101/val_function.rb",
153
+ "rake_tasks/default.rake",
154
+ "rake_tasks/integration.rake",
155
+ "rake_tasks/jeweler.rake",
156
+ "rake_tasks/spec.rake",
157
+ "rake_tasks/test.rake",
158
+ "rake_tasks/yard.rake",
159
+ "test/integration/arguments.rb",
160
+ "test/integration/errors.rb",
161
+ "test/integration/integration_test.rb",
162
+ "test/integration/main.rb",
163
+ "test/integration/output_file.rb",
164
+ "test/integration/test.rb",
165
+ "test/integration/tests/basic_computer_games/23-match.bas",
166
+ "test/integration/tests/basic_computer_games/23-match.input",
167
+ "test/integration/tests/basic_computer_games/23-match.output",
168
+ "test/integration/tests/basic_computer_games/3dplot.bas",
169
+ "test/integration/tests/basic_computer_games/3dplot.input",
170
+ "test/integration/tests/basic_computer_games/3dplot.output",
171
+ "test/integration/tests/basic_computer_games/aceyducy.bas",
172
+ "test/integration/tests/basic_computer_games/aceyducy.input",
173
+ "test/integration/tests/basic_computer_games/aceyducy.output",
174
+ "test/integration/tests/basic_computer_games/amazing.bas",
175
+ "test/integration/tests/basic_computer_games/amazing.input",
176
+ "test/integration/tests/basic_computer_games/amazing.output",
177
+ "test/integration/tests/basic_computer_games/animal.bas",
178
+ "test/integration/tests/basic_computer_games/animal.input",
179
+ "test/integration/tests/basic_computer_games/animal.output",
180
+ "test/integration/tests/basic_computer_games/awari.bas",
181
+ "test/integration/tests/basic_computer_games/awari.input",
182
+ "test/integration/tests/basic_computer_games/awari.output",
183
+ "test/integration/tests/basic_computer_games/bagels.bas",
184
+ "test/integration/tests/basic_computer_games/bagels.input",
185
+ "test/integration/tests/basic_computer_games/bagels.output",
186
+ "test/integration/tests/basic_computer_games/banner.bas",
187
+ "test/integration/tests/basic_computer_games/banner.input",
188
+ "test/integration/tests/basic_computer_games/banner.output",
189
+ "test/integration/tests/basic_computer_games/basketbl.bas",
190
+ "test/integration/tests/basic_computer_games/basketbl.input",
191
+ "test/integration/tests/basic_computer_games/basketbl.output",
192
+ "test/integration/tests/basic_computer_games/batnum.bas",
193
+ "test/integration/tests/basic_computer_games/batnum.input",
194
+ "test/integration/tests/basic_computer_games/batnum.output",
195
+ "test/integration/tests/basic_computer_games/battle.bas",
196
+ "test/integration/tests/basic_computer_games/battle.input",
197
+ "test/integration/tests/basic_computer_games/battle.output",
198
+ "test/integration/tests/basic_computer_games/blackjck.bas",
199
+ "test/integration/tests/basic_computer_games/blackjck.input",
200
+ "test/integration/tests/basic_computer_games/blackjck.output",
201
+ "test/integration/tests/basic_computer_games/bombard.bas",
202
+ "test/integration/tests/basic_computer_games/bombard.input",
203
+ "test/integration/tests/basic_computer_games/bombard.output",
204
+ "test/integration/tests/basic_computer_games/bounce.bas",
205
+ "test/integration/tests/basic_computer_games/bounce.input",
206
+ "test/integration/tests/basic_computer_games/bounce.output",
207
+ "test/integration/tests/basic_computer_games/bowling.bas",
208
+ "test/integration/tests/basic_computer_games/bowling.input",
209
+ "test/integration/tests/basic_computer_games/bowling.output",
210
+ "test/integration/tests/basic_computer_games/boxing.bas",
211
+ "test/integration/tests/basic_computer_games/boxing.input",
212
+ "test/integration/tests/basic_computer_games/boxing.output",
213
+ "test/integration/tests/basic_computer_games/bug.bas",
214
+ "test/integration/tests/basic_computer_games/bug.input",
215
+ "test/integration/tests/basic_computer_games/bug.output",
216
+ "test/integration/tests/basic_computer_games/bullfght.bas",
217
+ "test/integration/tests/basic_computer_games/bullfght.input",
218
+ "test/integration/tests/basic_computer_games/bullfght.output",
219
+ "test/integration/tests/basic_computer_games/bullseye.bas",
220
+ "test/integration/tests/basic_computer_games/bullseye.input",
221
+ "test/integration/tests/basic_computer_games/bullseye.output",
222
+ "test/integration/tests/basic_computer_games/bunny.bas",
223
+ "test/integration/tests/basic_computer_games/bunny.input",
224
+ "test/integration/tests/basic_computer_games/bunny.output",
225
+ "test/integration/tests/basic_computer_games/buzzword.bas",
226
+ "test/integration/tests/basic_computer_games/buzzword.input",
227
+ "test/integration/tests/basic_computer_games/buzzword.output",
228
+ "test/integration/tests/basic_computer_games/calendar.bas",
229
+ "test/integration/tests/basic_computer_games/calendar.input",
230
+ "test/integration/tests/basic_computer_games/calendar.output",
231
+ "test/integration/tests/basic_computer_games/change.bas",
232
+ "test/integration/tests/basic_computer_games/change.input",
233
+ "test/integration/tests/basic_computer_games/change.output",
234
+ "test/integration/tests/basic_computer_games/checkers.bas",
235
+ "test/integration/tests/basic_computer_games/checkers.input",
236
+ "test/integration/tests/basic_computer_games/checkers.output",
237
+ "test/integration/tests/basic_computer_games/chemist.bas",
238
+ "test/integration/tests/basic_computer_games/chemist.input",
239
+ "test/integration/tests/basic_computer_games/chemist.output",
240
+ "test/integration/tests/basic_computer_games/chief.bas",
241
+ "test/integration/tests/basic_computer_games/chief.input",
242
+ "test/integration/tests/basic_computer_games/chief.output",
243
+ "test/integration/tests/basic_computer_games/chomp.bas",
244
+ "test/integration/tests/basic_computer_games/chomp.input",
245
+ "test/integration/tests/basic_computer_games/chomp.output",
246
+ "test/integration/tests/basic_computer_games/combat.bas",
247
+ "test/integration/tests/basic_computer_games/combat.input",
248
+ "test/integration/tests/basic_computer_games/combat.output",
249
+ "test/integration/tests/basic_computer_games/craps.bas",
250
+ "test/integration/tests/basic_computer_games/craps.input",
251
+ "test/integration/tests/basic_computer_games/craps.output",
252
+ "test/integration/tests/basic_computer_games/cube.bas",
253
+ "test/integration/tests/basic_computer_games/cube.input",
254
+ "test/integration/tests/basic_computer_games/cube.output",
255
+ "test/integration/tests/basic_computer_games/depthchg.bas",
256
+ "test/integration/tests/basic_computer_games/depthchg.input",
257
+ "test/integration/tests/basic_computer_games/depthchg.output",
258
+ "test/integration/tests/basic_computer_games/diamond.bas",
259
+ "test/integration/tests/basic_computer_games/diamond.input",
260
+ "test/integration/tests/basic_computer_games/diamond.output",
261
+ "test/integration/tests/basic_computer_games/dice.bas",
262
+ "test/integration/tests/basic_computer_games/dice.input",
263
+ "test/integration/tests/basic_computer_games/dice.output",
264
+ "test/integration/tests/basic_computer_games/digits.bas",
265
+ "test/integration/tests/basic_computer_games/digits.input",
266
+ "test/integration/tests/basic_computer_games/digits.output",
267
+ "test/integration/tests/basic_computer_games/evenwin1.bas",
268
+ "test/integration/tests/basic_computer_games/evenwin1.input",
269
+ "test/integration/tests/basic_computer_games/evenwin1.output",
270
+ "test/integration/tests/basic_computer_games/evenwin2.bas",
271
+ "test/integration/tests/basic_computer_games/evenwin2.input",
272
+ "test/integration/tests/basic_computer_games/evenwin2.output",
273
+ "test/integration/tests/basic_computer_games/flipflop.bas",
274
+ "test/integration/tests/basic_computer_games/flipflop.input",
275
+ "test/integration/tests/basic_computer_games/flipflop.output",
276
+ "test/integration/tests/basic_computer_games/footbal1.bas",
277
+ "test/integration/tests/basic_computer_games/footbal1.input",
278
+ "test/integration/tests/basic_computer_games/footbal1.output",
279
+ "test/integration/tests/basic_computer_games/footbal2.bas",
280
+ "test/integration/tests/basic_computer_games/footbal2.input",
281
+ "test/integration/tests/basic_computer_games/footbal2.output",
282
+ "test/integration/tests/basic_computer_games/furtradr.bas",
283
+ "test/integration/tests/basic_computer_games/furtradr.input",
284
+ "test/integration/tests/basic_computer_games/furtradr.output",
285
+ "test/integration/tests/basic_computer_games/golf.bas",
286
+ "test/integration/tests/basic_computer_games/golf.input",
287
+ "test/integration/tests/basic_computer_games/golf.output",
288
+ "test/integration/tests/basic_computer_games/gomoko.bas",
289
+ "test/integration/tests/basic_computer_games/gomoko.input",
290
+ "test/integration/tests/basic_computer_games/gomoko.output",
291
+ "test/integration/tests/basic_computer_games/guess.bas",
292
+ "test/integration/tests/basic_computer_games/guess.input",
293
+ "test/integration/tests/basic_computer_games/guess.output",
294
+ "test/integration/tests/basic_computer_games/gunner.bas",
295
+ "test/integration/tests/basic_computer_games/gunner.input",
296
+ "test/integration/tests/basic_computer_games/gunner.output",
297
+ "test/integration/tests/basic_computer_games/hamurabi.bas",
298
+ "test/integration/tests/basic_computer_games/hamurabi.input",
299
+ "test/integration/tests/basic_computer_games/hamurabi.output",
300
+ "test/integration/tests/basic_computer_games/hangman.bas",
301
+ "test/integration/tests/basic_computer_games/hangman.input",
302
+ "test/integration/tests/basic_computer_games/hangman.output",
303
+ "test/integration/tests/basic_computer_games/hello.bas",
304
+ "test/integration/tests/basic_computer_games/hello.input",
305
+ "test/integration/tests/basic_computer_games/hello.output",
306
+ "test/integration/tests/basic_computer_games/hexapawn.bas",
307
+ "test/integration/tests/basic_computer_games/hexapawn.input",
308
+ "test/integration/tests/basic_computer_games/hexapawn.output",
309
+ "test/integration/tests/basic_computer_games/hi-q.bas",
310
+ "test/integration/tests/basic_computer_games/hi-q.input",
311
+ "test/integration/tests/basic_computer_games/hi-q.output",
312
+ "test/integration/tests/basic_computer_games/hilo.bas",
313
+ "test/integration/tests/basic_computer_games/hilo.input",
314
+ "test/integration/tests/basic_computer_games/hilo.output",
315
+ "test/integration/tests/basic_computer_games/hockey.bas",
316
+ "test/integration/tests/basic_computer_games/hockey.input",
317
+ "test/integration/tests/basic_computer_games/hockey.output",
318
+ "test/integration/tests/basic_computer_games/horsrace.bas",
319
+ "test/integration/tests/basic_computer_games/horsrace.input",
320
+ "test/integration/tests/basic_computer_games/horsrace.output",
321
+ "test/integration/tests/basic_computer_games/hurkle.bas",
322
+ "test/integration/tests/basic_computer_games/hurkle.input",
323
+ "test/integration/tests/basic_computer_games/hurkle.output",
324
+ "test/integration/tests/basic_computer_games/kinema.bas",
325
+ "test/integration/tests/basic_computer_games/kinema.input",
326
+ "test/integration/tests/basic_computer_games/kinema.output",
327
+ "test/integration/tests/basic_computer_games/king.bas",
328
+ "test/integration/tests/basic_computer_games/king.input",
329
+ "test/integration/tests/basic_computer_games/king.output",
330
+ "test/integration/tests/basic_computer_games/lem.bas",
331
+ "test/integration/tests/basic_computer_games/lem.input",
332
+ "test/integration/tests/basic_computer_games/lem.output",
333
+ "test/integration/tests/basic_computer_games/letter.bas",
334
+ "test/integration/tests/basic_computer_games/letter.input",
335
+ "test/integration/tests/basic_computer_games/letter.output",
336
+ "test/integration/tests/basic_computer_games/life.bas",
337
+ "test/integration/tests/basic_computer_games/life.input",
338
+ "test/integration/tests/basic_computer_games/life.options",
339
+ "test/integration/tests/basic_computer_games/life.output",
340
+ "test/integration/tests/basic_computer_games/life2.bas",
341
+ "test/integration/tests/basic_computer_games/life2.input",
342
+ "test/integration/tests/basic_computer_games/life2.output",
343
+ "test/integration/tests/basic_computer_games/litquiz.bas",
344
+ "test/integration/tests/basic_computer_games/litquiz.input",
345
+ "test/integration/tests/basic_computer_games/litquiz.output",
346
+ "test/integration/tests/basic_computer_games/love.bas",
347
+ "test/integration/tests/basic_computer_games/love.input",
348
+ "test/integration/tests/basic_computer_games/love.output",
349
+ "test/integration/tests/basic_computer_games/lunar.bas",
350
+ "test/integration/tests/basic_computer_games/lunar.input",
351
+ "test/integration/tests/basic_computer_games/lunar.output",
352
+ "test/integration/tests/basic_computer_games/mastrmnd.bas",
353
+ "test/integration/tests/basic_computer_games/mastrmnd.input",
354
+ "test/integration/tests/basic_computer_games/mastrmnd.output",
355
+ "test/integration/tests/basic_computer_games/mathdice.bas",
356
+ "test/integration/tests/basic_computer_games/mathdice.input",
357
+ "test/integration/tests/basic_computer_games/mathdice.output",
358
+ "test/integration/tests/basic_computer_games/mugwump.bas",
359
+ "test/integration/tests/basic_computer_games/mugwump.input",
360
+ "test/integration/tests/basic_computer_games/mugwump.output",
361
+ "test/integration/tests/basic_computer_games/name.bas",
362
+ "test/integration/tests/basic_computer_games/name.input",
363
+ "test/integration/tests/basic_computer_games/name.output",
364
+ "test/integration/tests/basic_computer_games/nicoma.bas",
365
+ "test/integration/tests/basic_computer_games/nicoma.input",
366
+ "test/integration/tests/basic_computer_games/nicoma.output",
367
+ "test/integration/tests/basic_computer_games/nim.bas",
368
+ "test/integration/tests/basic_computer_games/nim.input",
369
+ "test/integration/tests/basic_computer_games/nim.output",
370
+ "test/integration/tests/basic_computer_games/number.bas",
371
+ "test/integration/tests/basic_computer_games/number.input",
372
+ "test/integration/tests/basic_computer_games/number.output",
373
+ "test/integration/tests/basic_computer_games/onecheck.bas",
374
+ "test/integration/tests/basic_computer_games/onecheck.input",
375
+ "test/integration/tests/basic_computer_games/onecheck.output",
376
+ "test/integration/tests/basic_computer_games/orbit.bas",
377
+ "test/integration/tests/basic_computer_games/orbit.input",
378
+ "test/integration/tests/basic_computer_games/orbit.output",
379
+ "test/integration/tests/basic_computer_games/pizza.bas",
380
+ "test/integration/tests/basic_computer_games/pizza.input",
381
+ "test/integration/tests/basic_computer_games/pizza.output",
382
+ "test/integration/tests/basic_computer_games/poetry.bas",
383
+ "test/integration/tests/basic_computer_games/poetry.input",
384
+ "test/integration/tests/basic_computer_games/poetry.options",
385
+ "test/integration/tests/basic_computer_games/poetry.output",
386
+ "test/integration/tests/basic_computer_games/poker.bas",
387
+ "test/integration/tests/basic_computer_games/poker.input",
388
+ "test/integration/tests/basic_computer_games/poker.output",
389
+ "test/integration/tests/basic_computer_games/queen.bas",
390
+ "test/integration/tests/basic_computer_games/queen.input",
391
+ "test/integration/tests/basic_computer_games/queen.output",
392
+ "test/integration/tests/basic_computer_games/reverse.bas",
393
+ "test/integration/tests/basic_computer_games/reverse.input",
394
+ "test/integration/tests/basic_computer_games/reverse.output",
395
+ "test/integration/tests/basic_computer_games/rocket.bas",
396
+ "test/integration/tests/basic_computer_games/rocket.input",
397
+ "test/integration/tests/basic_computer_games/rocket.output",
398
+ "test/integration/tests/basic_computer_games/rocksp.bas",
399
+ "test/integration/tests/basic_computer_games/rocksp.input",
400
+ "test/integration/tests/basic_computer_games/rocksp.output",
401
+ "test/integration/tests/basic_computer_games/roulette.bas",
402
+ "test/integration/tests/basic_computer_games/roulette.input",
403
+ "test/integration/tests/basic_computer_games/roulette.output",
404
+ "test/integration/tests/basic_computer_games/rusrou.bas",
405
+ "test/integration/tests/basic_computer_games/rusrou.input",
406
+ "test/integration/tests/basic_computer_games/rusrou.output",
407
+ "test/integration/tests/basic_computer_games/salvo.bas",
408
+ "test/integration/tests/basic_computer_games/salvo.input",
409
+ "test/integration/tests/basic_computer_games/salvo.output",
410
+ "test/integration/tests/basic_computer_games/sinewave.bas",
411
+ "test/integration/tests/basic_computer_games/sinewave.input",
412
+ "test/integration/tests/basic_computer_games/sinewave.output",
413
+ "test/integration/tests/basic_computer_games/slalom.bas",
414
+ "test/integration/tests/basic_computer_games/slalom.input",
415
+ "test/integration/tests/basic_computer_games/slalom.output",
416
+ "test/integration/tests/basic_computer_games/slots.bas",
417
+ "test/integration/tests/basic_computer_games/slots.input",
418
+ "test/integration/tests/basic_computer_games/slots.output",
419
+ "test/integration/tests/basic_computer_games/splat.bas",
420
+ "test/integration/tests/basic_computer_games/splat.input",
421
+ "test/integration/tests/basic_computer_games/splat.output",
422
+ "test/integration/tests/basic_computer_games/stars.bas",
423
+ "test/integration/tests/basic_computer_games/stars.input",
424
+ "test/integration/tests/basic_computer_games/stars.output",
425
+ "test/integration/tests/basic_computer_games/stock.bas",
426
+ "test/integration/tests/basic_computer_games/stock.input",
427
+ "test/integration/tests/basic_computer_games/stock.output",
428
+ "test/integration/tests/basic_computer_games/superstartrek.bas",
429
+ "test/integration/tests/basic_computer_games/superstartrek.input",
430
+ "test/integration/tests/basic_computer_games/superstartrek.output",
431
+ "test/integration/tests/basic_computer_games/superstartrekins.bas",
432
+ "test/integration/tests/basic_computer_games/superstartrekins.input",
433
+ "test/integration/tests/basic_computer_games/superstartrekins.output",
434
+ "test/integration/tests/basic_computer_games/synonym.bas",
435
+ "test/integration/tests/basic_computer_games/synonym.input",
436
+ "test/integration/tests/basic_computer_games/synonym.output",
437
+ "test/integration/tests/basic_computer_games/target.bas",
438
+ "test/integration/tests/basic_computer_games/target.input",
439
+ "test/integration/tests/basic_computer_games/target.output",
440
+ "test/integration/tests/basic_computer_games/tictac1.bas",
441
+ "test/integration/tests/basic_computer_games/tictac1.input",
442
+ "test/integration/tests/basic_computer_games/tictac1.output",
443
+ "test/integration/tests/basic_computer_games/tictac2.bas",
444
+ "test/integration/tests/basic_computer_games/tictac2.input",
445
+ "test/integration/tests/basic_computer_games/tictac2.output",
446
+ "test/integration/tests/basic_computer_games/towers.bas",
447
+ "test/integration/tests/basic_computer_games/towers.input",
448
+ "test/integration/tests/basic_computer_games/towers.output",
449
+ "test/integration/tests/basic_computer_games/train.bas",
450
+ "test/integration/tests/basic_computer_games/train.input",
451
+ "test/integration/tests/basic_computer_games/train.output",
452
+ "test/integration/tests/basic_computer_games/trap.bas",
453
+ "test/integration/tests/basic_computer_games/trap.input",
454
+ "test/integration/tests/basic_computer_games/trap.output",
455
+ "test/integration/tests/basic_computer_games/war.bas",
456
+ "test/integration/tests/basic_computer_games/war.input",
457
+ "test/integration/tests/basic_computer_games/war.output",
458
+ "test/integration/tests/basic_computer_games/weekday.bas",
459
+ "test/integration/tests/basic_computer_games/weekday.input",
460
+ "test/integration/tests/basic_computer_games/weekday.output",
461
+ "test/integration/tests/basic_computer_games/word.bas",
462
+ "test/integration/tests/basic_computer_games/word.input",
463
+ "test/integration/tests/basic_computer_games/word.output",
464
+ "test/integration/tests/fast/abs.bas",
465
+ "test/integration/tests/fast/abs.input",
466
+ "test/integration/tests/fast/abs.output",
467
+ "test/integration/tests/fast/add.bas",
468
+ "test/integration/tests/fast/add.input",
469
+ "test/integration/tests/fast/add.output",
470
+ "test/integration/tests/fast/and.bas",
471
+ "test/integration/tests/fast/and.input",
472
+ "test/integration/tests/fast/and.output",
473
+ "test/integration/tests/fast/array.bas",
474
+ "test/integration/tests/fast/array.input",
475
+ "test/integration/tests/fast/array.output",
476
+ "test/integration/tests/fast/asc.bas",
477
+ "test/integration/tests/fast/asc.input",
478
+ "test/integration/tests/fast/asc.output",
479
+ "test/integration/tests/fast/chr.bas",
480
+ "test/integration/tests/fast/chr.input",
481
+ "test/integration/tests/fast/chr.output",
482
+ "test/integration/tests/fast/cos.bas",
483
+ "test/integration/tests/fast/cos.input",
484
+ "test/integration/tests/fast/cos.output",
485
+ "test/integration/tests/fast/def_fn.bas",
486
+ "test/integration/tests/fast/def_fn.input",
487
+ "test/integration/tests/fast/def_fn.output",
488
+ "test/integration/tests/fast/divide.bas",
489
+ "test/integration/tests/fast/divide.input",
490
+ "test/integration/tests/fast/divide.output",
491
+ "test/integration/tests/fast/end.bas",
492
+ "test/integration/tests/fast/end.input",
493
+ "test/integration/tests/fast/end.output",
494
+ "test/integration/tests/fast/eq.bas",
495
+ "test/integration/tests/fast/eq.input",
496
+ "test/integration/tests/fast/eq.output",
497
+ "test/integration/tests/fast/exp.bas",
498
+ "test/integration/tests/fast/exp.input",
499
+ "test/integration/tests/fast/exp.output",
500
+ "test/integration/tests/fast/float.bas",
501
+ "test/integration/tests/fast/float.input",
502
+ "test/integration/tests/fast/float.output",
503
+ "test/integration/tests/fast/for_next.bas",
504
+ "test/integration/tests/fast/for_next.input",
505
+ "test/integration/tests/fast/for_next.output",
506
+ "test/integration/tests/fast/ge.bas",
507
+ "test/integration/tests/fast/ge.input",
508
+ "test/integration/tests/fast/ge.output",
509
+ "test/integration/tests/fast/gosub_return.bas",
510
+ "test/integration/tests/fast/gosub_return.input",
511
+ "test/integration/tests/fast/gosub_return.output",
512
+ "test/integration/tests/fast/goto.bas",
513
+ "test/integration/tests/fast/goto.input",
514
+ "test/integration/tests/fast/goto.output",
515
+ "test/integration/tests/fast/gt.bas",
516
+ "test/integration/tests/fast/gt.input",
517
+ "test/integration/tests/fast/gt.output",
518
+ "test/integration/tests/fast/if.bas",
519
+ "test/integration/tests/fast/if.input",
520
+ "test/integration/tests/fast/if.output",
521
+ "test/integration/tests/fast/input.bas",
522
+ "test/integration/tests/fast/input.input",
523
+ "test/integration/tests/fast/input.output",
524
+ "test/integration/tests/fast/int.bas",
525
+ "test/integration/tests/fast/int.input",
526
+ "test/integration/tests/fast/int.output",
527
+ "test/integration/tests/fast/integer_plus_string.bas",
528
+ "test/integration/tests/fast/integer_plus_string.input",
529
+ "test/integration/tests/fast/integer_plus_string.output",
530
+ "test/integration/tests/fast/invalid_argument.bas",
531
+ "test/integration/tests/fast/invalid_argument.input",
532
+ "test/integration/tests/fast/invalid_argument.output",
533
+ "test/integration/tests/fast/le.bas",
534
+ "test/integration/tests/fast/le.input",
535
+ "test/integration/tests/fast/le.output",
536
+ "test/integration/tests/fast/left.bas",
537
+ "test/integration/tests/fast/left.input",
538
+ "test/integration/tests/fast/left.output",
539
+ "test/integration/tests/fast/len.bas",
540
+ "test/integration/tests/fast/len.input",
541
+ "test/integration/tests/fast/len.output",
542
+ "test/integration/tests/fast/let.bas",
543
+ "test/integration/tests/fast/let.input",
544
+ "test/integration/tests/fast/let.output",
545
+ "test/integration/tests/fast/log.bas",
546
+ "test/integration/tests/fast/log.input",
547
+ "test/integration/tests/fast/log.output",
548
+ "test/integration/tests/fast/lt.bas",
549
+ "test/integration/tests/fast/lt.input",
550
+ "test/integration/tests/fast/lt.output",
551
+ "test/integration/tests/fast/math.output",
552
+ "test/integration/tests/fast/mid.bas",
553
+ "test/integration/tests/fast/mid.input",
554
+ "test/integration/tests/fast/mid.output",
555
+ "test/integration/tests/fast/multiply.bas",
556
+ "test/integration/tests/fast/multiply.input",
557
+ "test/integration/tests/fast/multiply.output",
558
+ "test/integration/tests/fast/ne.bas",
559
+ "test/integration/tests/fast/ne.input",
560
+ "test/integration/tests/fast/ne.output",
561
+ "test/integration/tests/fast/negate.bas",
562
+ "test/integration/tests/fast/negate.input",
563
+ "test/integration/tests/fast/negate.output",
564
+ "test/integration/tests/fast/not.bas",
565
+ "test/integration/tests/fast/not.input",
566
+ "test/integration/tests/fast/not.output",
567
+ "test/integration/tests/fast/on_goto.bas",
568
+ "test/integration/tests/fast/on_goto.input",
569
+ "test/integration/tests/fast/on_goto.output",
570
+ "test/integration/tests/fast/or.bas",
571
+ "test/integration/tests/fast/or.input",
572
+ "test/integration/tests/fast/or.output",
573
+ "test/integration/tests/fast/parentheses.bas",
574
+ "test/integration/tests/fast/parentheses.input",
575
+ "test/integration/tests/fast/parentheses.output",
576
+ "test/integration/tests/fast/power.bas",
577
+ "test/integration/tests/fast/power.input",
578
+ "test/integration/tests/fast/power.output",
579
+ "test/integration/tests/fast/print.bas",
580
+ "test/integration/tests/fast/print.input",
581
+ "test/integration/tests/fast/print.output",
582
+ "test/integration/tests/fast/read_data.bas",
583
+ "test/integration/tests/fast/read_data.input",
584
+ "test/integration/tests/fast/read_data.output",
585
+ "test/integration/tests/fast/rem.bas",
586
+ "test/integration/tests/fast/rem.input",
587
+ "test/integration/tests/fast/rem.output",
588
+ "test/integration/tests/fast/right.bas",
589
+ "test/integration/tests/fast/right.input",
590
+ "test/integration/tests/fast/right.output",
591
+ "test/integration/tests/fast/rnd.bas",
592
+ "test/integration/tests/fast/rnd.input",
593
+ "test/integration/tests/fast/rnd.output",
594
+ "test/integration/tests/fast/sgn.bas",
595
+ "test/integration/tests/fast/sgn.input",
596
+ "test/integration/tests/fast/sgn.output",
597
+ "test/integration/tests/fast/sin.bas",
598
+ "test/integration/tests/fast/sin.input",
599
+ "test/integration/tests/fast/sin.output",
600
+ "test/integration/tests/fast/sqr.bas",
601
+ "test/integration/tests/fast/sqr.input",
602
+ "test/integration/tests/fast/sqr.output",
603
+ "test/integration/tests/fast/stop.bas",
604
+ "test/integration/tests/fast/stop.input",
605
+ "test/integration/tests/fast/stop.output",
606
+ "test/integration/tests/fast/str.bas",
607
+ "test/integration/tests/fast/str.input",
608
+ "test/integration/tests/fast/str.output",
609
+ "test/integration/tests/fast/string_addition.bas",
610
+ "test/integration/tests/fast/string_addition.input",
611
+ "test/integration/tests/fast/string_addition.output",
612
+ "test/integration/tests/fast/string_comparisons.bas",
613
+ "test/integration/tests/fast/string_comparisons.input",
614
+ "test/integration/tests/fast/string_comparisons.output",
615
+ "test/integration/tests/fast/string_plus_integer.bas",
616
+ "test/integration/tests/fast/string_plus_integer.input",
617
+ "test/integration/tests/fast/string_plus_integer.output",
618
+ "test/integration/tests/fast/subtract.bas",
619
+ "test/integration/tests/fast/subtract.input",
620
+ "test/integration/tests/fast/subtract.output",
621
+ "test/integration/tests/fast/tab.bas",
622
+ "test/integration/tests/fast/tab.input",
623
+ "test/integration/tests/fast/tab.output",
624
+ "test/integration/tests/fast/tan.bas",
625
+ "test/integration/tests/fast/tan.input",
626
+ "test/integration/tests/fast/tan.output",
627
+ "test/integration/tests/fast/val.bas",
628
+ "test/integration/tests/fast/val.input",
629
+ "test/integration/tests/fast/val.output",
630
+ "test/spec/argument_checker_spec.rb",
631
+ "test/spec/basic_array_spec.rb",
632
+ "test/spec/basic_float_spec.rb",
633
+ "test/spec/basic_integer_spec.rb",
634
+ "test/spec/basic_numeric_spec.rb",
635
+ "test/spec/basic_object_spec.rb",
636
+ "test/spec/basic_string_spec.rb",
637
+ "test/spec/for_stack_spec.rb",
638
+ "test/spec/input_reader_spec.rb",
639
+ "test/spec/input_spec.rb",
640
+ "test/spec/line_spec.rb",
641
+ "test/spec/output_spec.rb",
642
+ "test/spec/parser_spec.rb",
643
+ "test/spec/program_spec.rb",
644
+ "test/spec/spec_helper.rb",
645
+ "test/spec/support/basic_numeric_helpers.rb",
646
+ "test/spec/support/basic_object_helpers.rb",
647
+ "test/spec/transcript_spec.rb",
648
+ "test/spec/transform_spec.rb"
649
+ ]
650
+ s.homepage = "http://github.com/wconrad/basic101"
651
+ s.licenses = ["MIT"]
652
+ s.rubygems_version = "2.4.4"
653
+ s.summary = "Circa 1980 basic intepreter"
654
+
655
+ if s.respond_to? :specification_version then
656
+ s.specification_version = 4
657
+
658
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
659
+ s.add_runtime_dependency(%q<parslet>, ["~> 1.5"])
660
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0"])
661
+ s.add_development_dependency(%q<rake>, ["~> 10.4"])
662
+ s.add_development_dependency(%q<redcarpet>, ["~> 3.2"])
663
+ s.add_development_dependency(%q<rspec>, ["~> 3.1"])
664
+ s.add_development_dependency(%q<rspec-its>, ["~> 1.1"])
665
+ s.add_development_dependency(%q<simplecov>, ["~> 0.9"])
666
+ s.add_development_dependency(%q<yard>, ["~> 0.8.7"])
667
+ else
668
+ s.add_dependency(%q<parslet>, ["~> 1.5"])
669
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
670
+ s.add_dependency(%q<rake>, ["~> 10.4"])
671
+ s.add_dependency(%q<redcarpet>, ["~> 3.2"])
672
+ s.add_dependency(%q<rspec>, ["~> 3.1"])
673
+ s.add_dependency(%q<rspec-its>, ["~> 1.1"])
674
+ s.add_dependency(%q<simplecov>, ["~> 0.9"])
675
+ s.add_dependency(%q<yard>, ["~> 0.8.7"])
676
+ end
677
+ else
678
+ s.add_dependency(%q<parslet>, ["~> 1.5"])
679
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
680
+ s.add_dependency(%q<rake>, ["~> 10.4"])
681
+ s.add_dependency(%q<redcarpet>, ["~> 3.2"])
682
+ s.add_dependency(%q<rspec>, ["~> 3.1"])
683
+ s.add_dependency(%q<rspec-its>, ["~> 1.1"])
684
+ s.add_dependency(%q<simplecov>, ["~> 0.9"])
685
+ s.add_dependency(%q<yard>, ["~> 0.8.7"])
686
+ end
687
+ end
688
+