rubyx/lib/vool/hash_statement.rb

18 lines
217 B
Ruby
Raw Normal View History

2017-04-02 09:57:39 +02:00
module Vool
class HashStatement
attr_reader :hash
def initialize( )
@hash = {}
end
def add(key , value)
@hash[key] = value
end
def length
@hash.length
end
end
end