rubyx/lib/slot_language/equal_goto.rb

14 lines
216 B
Ruby
Raw Normal View History

module SlotLanguage
class EqualGoto
attr_reader :left , :right, :goto
def initialize( left , right)
@left = left
@right = right
end
def set_goto(go)
@goto = go
end
end
end