From 9f077cc2fa14e11c705dca06c3a5adbb8af6ede4 Mon Sep 17 00:00:00 2001 From: Chris Allen Date: Tue, 19 May 2020 15:48:06 +0000 Subject: [PATCH] Done. --- lib/dog.rb | 10 ++++++++++ lib/person.rb | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/lib/dog.rb b/lib/dog.rb index e69de29b..91d06990 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,10 @@ +class Dog + def bark + puts "Woof!" + end + + def sit + puts "The Dog is sitting" + end + +end diff --git a/lib/person.rb b/lib/person.rb index e69de29b..18b05c03 100644 --- a/lib/person.rb +++ b/lib/person.rb @@ -0,0 +1,9 @@ +class Person + def talk + puts "Hello World!" + end + + def walk + puts "The Person is walking" + end +end