Skip to content

Instantly share code, notes, and snippets.

@kiote
Created March 23, 2015 09:16
Show Gist options
  • Save kiote/16550ba2d1001cc3a7a4 to your computer and use it in GitHub Desktop.
Save kiote/16550ba2d1001cc3a7a4 to your computer and use it in GitHub Desktop.
class A
class << self
def meth1
print 'hi'
end
private
def meth2
print 'hi1'
end
end
end
A.meth1
A.meth2 # error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment