Skip to content

Instantly share code, notes, and snippets.

@agrimm
Created December 13, 2011 10:56
Show Gist options
  • Save agrimm/1471685 to your computer and use it in GitHub Desktop.
Save agrimm/1471685 to your computer and use it in GitHub Desktop.
super from ROROsyd
module Baz
def hello
"baz " + super
end
end
module Bar
def hello
"bar"
end
end
class Foo
def hello
"hello from " + super
end
include Bar
include Baz
end
Foo.new.hello # => "hello from baz bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment