db8f99409b
also tests for guard to work
14 lines
176 B
Ruby
14 lines
176 B
Ruby
module Vool
|
|
class ArrayStatement
|
|
attr_reader :values
|
|
|
|
def initialize( values )
|
|
@values = values
|
|
end
|
|
|
|
def length
|
|
@values.length
|
|
end
|
|
end
|
|
end
|