intprog_hackery/Type.rb

13 lines
165 B
Ruby

class Type
attr_accessor :type
attr_accessor :variable
attr_accessor :comparator
def initialize(type, var)
@type = type
@variable = var
end
end