Skip to content

Instantly share code, notes, and snippets.

@scalone
Created May 21, 2014 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save scalone/9d9c9cba17bb404a55e2 to your computer and use it in GitHub Desktop.
Save scalone/9d9c9cba17bb404a55e2 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