From 0a3a87f5b8fcaedecf35d0da4315dc759f1b72cf Mon Sep 17 00:00:00 2001 From: Clayton Pierce Date: Tue, 25 Aug 2020 02:44:19 +0000 Subject: [PATCH] Done. --- lib/dog.rb | 8 ++++++++ lib/person.rb | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/lib/dog.rb b/lib/dog.rb index e69de29b..b9703144 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,8 @@ +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..e7a83651 100644 --- a/lib/person.rb +++ b/lib/person.rb @@ -0,0 +1,8 @@ +class Person + def talk + puts "Hello World!" + end + def walk + puts "The Person is walking" + end +end