public
Description: a Scheme written in Ruby, but implemented on the bus!
Homepage: http://bus-scheme.rubyforge.org
Clone URL: git://github.com/technomancy/bus-scheme.git
a bit fewer warnings
technomancy (author)
Sat May 31 13:05:34 -0700 2008
commit  99493d9c54128c57f3663d85d2690595cb3cb1e9
tree    7c82a0bf5fbd3f30dd7ad973d3869245bee54900
parent  50f2b8574dd016b267a90cc44e306e8aedb9797c
...
1
2
3
 
4
5
6
...
1
2
 
3
4
5
6
0
@@ -1,6 +1,6 @@
0
 module BusScheme
0
   class Cons
0
- attr_accessor :car, :cdr
0
+ attr_writer :car, :cdr
0
 
0
     def car
0
       raise "Tried to access car of empty list." if empty?
...
14
15
16
 
17
18
19
...
14
15
16
17
18
19
20
0
@@ -14,6 +14,7 @@ class Object
0
   def special_form
0
     false
0
   end
0
+ undef_method :to_a if Object.respond_to? :to_a # this is deprecated anyway
0
 end
0
 
0
 # O HAI Booleans.

Comments

    No one has commented yet.