Skip to content

Instantly share code, notes, and snippets.

@zuchmanski
Created April 25, 2012 12:48
Show Gist options
  • Save zuchmanski/2489514 to your computer and use it in GitHub Desktop.
Save zuchmanski/2489514 to your computer and use it in GitHub Desktop.
class A
class << self
def a
"a"
end
alias b a
end
end
p A.a
p A.b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment