Skip to content

Instantly share code, notes, and snippets.

@mernen
Created June 4, 2009 00:43
Show Gist options
  • Save mernen/123362 to your computer and use it in GitHub Desktop.
Save mernen/123362 to your computer and use it in GitHub Desktop.
module Foo
BAZ = 100
module Bar
def self.baz
BAZ
end
end
end
puts Foo::Bar.baz
Foo::Bar::BAZ = 150
puts Foo::Bar.baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment