From b0e0ea3707b0a6348b19676a7b952ca0b85554f4 Mon Sep 17 00:00:00 2001 From: Daniel Gould Date: Tue, 7 Jul 2020 18:13:17 +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..68bd2ca2 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,8 @@ +class Dog + def bark + puts "Woof!" + def sit + puts "The Dog is sitting" + end + end +end \ No newline at end of file diff --git a/lib/person.rb b/lib/person.rb index e69de29b..3b8e8016 100644 --- a/lib/person.rb +++ b/lib/person.rb @@ -0,0 +1,8 @@ +class Person + def talk + puts "Hello World!" + def walk + puts "The Person is walking" + end + end +end