Skip to content

Instantly share code, notes, and snippets.

@Shinya131
Created October 25, 2012 00:41
Show Gist options
  • Save Shinya131/3949828 to your computer and use it in GitHub Desktop.
Save Shinya131/3949828 to your computer and use it in GitHub Desktop.
class MyClass
def public_my_method
p "public!"
end
private
def private_my_method
p "private!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment