Skip to content

Instantly share code, notes, and snippets.

@sadasant
Forked from scalone/rb.rb
Created May 21, 2014 21:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sadasant/ae711a1fb4dd72c27b4e to your computer and use it in GitHub Desktop.
Save sadasant/ae711a1fb4dd72c27b4e to your computer and use it in GitHub Desktop.
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