Skip to content

Instantly share code, notes, and snippets.

@Hirurg103
Last active August 29, 2015 13:56
Show Gist options
  • Save Hirurg103/9049284 to your computer and use it in GitHub Desktop.
Save Hirurg103/9049284 to your computer and use it in GitHub Desktop.
class A
def a
"a"
end
end
module M
def a
"m"
end
end
class A
include M
end
A.new.a
=> "a"
module M
def a
"m"
end
end
class A
prepend M
def a
"a"
end
end
A.new.a
=> "a"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment