rubyx/lib/slot_language/check_maker.rb

15 lines
253 B
Ruby
Raw Normal View History

2019-10-05 13:49:45 +02:00
module SlotLanguage
class CheckMaker
attr_reader :check , :left , :right, :goto
def initialize(check , left , right)
@check = check
@left = left
@right = right
end
def set_goto(go)
@goto = go
end
end
end