From b245a6f6d21d497435f7eedd51165838b3170579 Mon Sep 17 00:00:00 2001 From: Kyle Samuel Date: Sat, 20 Feb 2021 12:28:20 -0500 Subject: [PATCH 1/2] Done. --- lib/dog.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/dog.rb b/lib/dog.rb index e69de29b..fb5449f6 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,17 @@ +class Dog + def bark + puts "Woof!" + end + def sit + puts "The dog is sitting." + end +end + +class Person + def talk + puts "Hello World!" + end + def walk + puts "The Person is walking" + end +end From 4240f28c435594d97b8307b9d6132e0fcdb7b867 Mon Sep 17 00:00:00 2001 From: Kyle Samuel Date: Sat, 20 Feb 2021 12:29:12 -0500 Subject: [PATCH 2/2] Done. --- lib/dog.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dog.rb b/lib/dog.rb index fb5449f6..f623188a 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -3,7 +3,7 @@ def bark puts "Woof!" end def sit - puts "The dog is sitting." + puts "The Dog is sitting" end end