Created
December 29, 2009 15:34
-
-
Save ptzn/265370 to your computer and use it in GitHub Desktop.
Foo::Bar.baz
This file contains hidden or 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 | |
class Bar | |
def self.baz | |
puts 'In Foo::Bar' | |
end | |
end | |
end | |
>> Foo::Bar.baz # => In Foo::Bar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment