Skip to content

Instantly share code, notes, and snippets.

@dbussink
Created May 21, 2011 14:00
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 dbussink/46527b2656ea06ac251b to your computer and use it in GitHub Desktop.
Save dbussink/46527b2656ea06ac251b to your computer and use it in GitHub Desktop.
class Blah
def public_method
private_method
end
end
def private_method
puts "Here"
end
Blah.new.public_method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment