adds arrays to vool

also symbols and some cleanup
This commit is contained in:
Torsten Ruger
2017-04-02 10:43:22 +03:00
parent 8f03d98330
commit d5af6dad42
7 changed files with 70 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
module Vool
class ArrayStatement
attr_reader :values
def initialize( values )
@values = values
end
def length
@values.length
end
end
end