adds basic values (bools ints strings)

This commit is contained in:
Torsten Ruger
2017-04-02 09:44:56 +03:00
parent b341c722fd
commit 8f03d98330
5 changed files with 69 additions and 79 deletions

View File

@ -3,7 +3,7 @@ module Vool
attr_reader :name, :super_class_name , :body
def initialize( name , supe , body)
@name , @super_class_name , @body = name , supe , (body || [])
@name , @super_class_name , @body = name , supe , body
end
end