Created
March 20, 2013 17:03
-
-
Save jemmons/5206379 to your computer and use it in GitHub Desktop.
Tabs shouldn't matter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Foo | |
module Bar | |
class Baz | |
def self.quux | |
puts "hello, world" end end end end | |
Foo::Bar::Baz.quux() | |
module Fred | |
module Barny | |
module Wilma | |
def self.betty | |
puts "hello, bedrock" | |
end | |
end | |
end | |
end | |
Fred::Barny::Wilma.betty() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment