Created
May 21, 2014 20:47
-
-
Save scalone/9d9c9cba17bb404a55e2 to your computer and use it in GitHub Desktop.
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 T | |
def self.display | |
puts "display 1" | |
end | |
end | |
T.display | |
def T.display | |
puts "display 2" | |
end | |
T.display | |
module T | |
def self.display | |
puts "display 3" | |
end | |
end | |
T.display |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment