-
-
Save sadasant/ae711a1fb4dd72c27b4e 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