intprog_hackery/Type.rb

13 lines
165 B
Ruby
Raw Normal View History

2019-10-14 10:54:53 +00:00
class Type
attr_accessor :type
attr_accessor :variable
attr_accessor :comparator
def initialize(type, var)
@type = type
@variable = var
end
end