rubyx/lib/slot_language/goto.rb

11 lines
123 B
Ruby
Raw Normal View History

module SlotLanguage
class Goto
attr_reader :label
def initialize(label)
@label = label
end
end
end