Skip to content

Instantly share code, notes, and snippets.

@theleoborges
Created January 22, 2011 10:26
Show Gist options
  • Save theleoborges/791028 to your computer and use it in GitHub Desktop.
Save theleoborges/791028 to your computer and use it in GitHub Desktop.
hacking-rubys-syntax#2
class Test
def method_a
method_b
end
#just another public method. We might have several
def method_c
method_b
end
private
def method_b
puts "I'm a private method"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment