From b91977defed47c4ed70ce5351b0d82aadbfe6e86 Mon Sep 17 00:00:00 2001 From: Shannon Grant Date: Mon, 26 Oct 2020 03:42:49 +0000 Subject: [PATCH] Done. --- lib/dog.rb | 9 +++++++++ lib/person.rb | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/lib/dog.rb b/lib/dog.rb index e69de29b..6b2a0fc0 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,9 @@ +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