Skip to content

Instantly share code, notes, and snippets.

@cjbottaro
Created October 25, 2013 21:29
Show Gist options
  • Save cjbottaro/7162130 to your computer and use it in GitHub Desktop.
Save cjbottaro/7162130 to your computer and use it in GitHub Desktop.
Like Python!
module Foo
extend(self)
def foo
"foo"
end
end
Foo.foo
# => "foo"
foo
# NameError: undefined local variable or method `foo' for main:Object
include(Foo)
foo
# => "foo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment