Skip to content

Instantly share code, notes, and snippets.

@pguth66
Created August 14, 2012 17:20
Show Gist options
  • Save pguth66/3350976 to your computer and use it in GitHub Desktop.
Save pguth66/3350976 to your computer and use it in GitHub Desktop.
Ruby meets rock!
#!/usr/bin/ruby
class Me
def leppard ; self.pour("some sugar") ; end
def pour(substance)
puts "Pour " + substance + " on me"
end
end
me=Me.new
me.leppard
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment