rubymotionlisp 1.0.10 → 1.0.11

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 (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rubylisp/prim_io.rb +5 -3
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ceec9aeb2b9c29d409955a0a86915279a462646
4
- data.tar.gz: 1307407e5c0f05862569bb49e3ef9d94634bc671
3
+ metadata.gz: 10c9718f339ca93186dafa8165c1770ed3ac54ae
4
+ data.tar.gz: cbb7459b2700bd3e754e67a376be801cf9d8a554
5
5
  SHA512:
6
- metadata.gz: 1ebd489f0fdf496383a27ca4157ad733475eefd3725297b721f62db79104b8095f21b67e333704a7403dba63549ca7586a811bc59753880d8d32c95cf5ee50c1
7
- data.tar.gz: b668ce7d3126fde12668c99a84346d42604e71a081839da851e40f85c3d8a9e9b53d0fbb0d3550adfb1c8690f427a5ced5945b36a9ec1ceb35f32126bcdeebc3
6
+ metadata.gz: 9d1a6fb500711bb718ecd443a00dd49ae7e1da7262ea36e587c3d1c30e604b8d89ba88a08ed8df6beb03b240f163153409f5ee781adad39a7753f4818fbe5a0f
7
+ data.tar.gz: b08b3633a0fad3ccfda4e6824d40400cc983c4dfc7dc5aeeee2867dc8395241c83256f6b67697b162007e0e6add6bc64aaa992cc3f75c3ad199343fbfa3b43dc
@@ -73,7 +73,7 @@ module Lisp
73
73
  else
74
74
  self.output_to_stdout(s.value)
75
75
  end
76
-
76
+ Lisp::String.with_value("OK")
77
77
  end
78
78
 
79
79
 
@@ -86,7 +86,7 @@ module Lisp
86
86
  else
87
87
  self.output_to_stdout("\n")
88
88
  end
89
-
89
+ Lisp::String.with_value("OK")
90
90
  end
91
91
 
92
92
 
@@ -99,7 +99,7 @@ module Lisp
99
99
  else
100
100
  self.output_to_stdout(args.car.print_string)
101
101
  end
102
-
102
+ Lisp::String.with_value("OK")
103
103
  end
104
104
 
105
105
 
@@ -214,8 +214,10 @@ module Lisp
214
214
 
215
215
  if destination.port?
216
216
  destination.value.write(combined_string)
217
+ Lisp::String.with_value("OK")
217
218
  elsif destination.value
218
219
  self.output_to_stdout(combined_string)
220
+ Lisp::String.with_value("OK")
219
221
  else
220
222
  return Lisp::String.with_value(combined_string)
221
223
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubymotionlisp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.10
4
+ version: 1.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dave Astels