Skip to content

Instantly share code, notes, and snippets.

@jemmons
Created March 20, 2013 17:03
Show Gist options
  • Save jemmons/5206379 to your computer and use it in GitHub Desktop.
Save jemmons/5206379 to your computer and use it in GitHub Desktop.
Tabs shouldn't matter
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