Skip to content

Instantly share code, notes, and snippets.

@cyril
Created September 2, 2015 23:10
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 cyril/f31d36f57541a9a79793 to your computer and use it in GitHub Desktop.
Save cyril/f31d36f57541a9a79793 to your computer and use it in GitHub Desktop.
A duck class in Ruby
# duck.rb
class Duck
def walks
'Klop klop!'
end
def swims
'Swoosh...'
end
def quacks
puts 'Quaaaaaack!'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment