From 94dd20d6c1777d3e47d1484fa369e17fb7c42a4f Mon Sep 17 00:00:00 2001 From: Gabriel Onike Date: Sun, 7 Jun 2020 09:54:50 +0000 Subject: [PATCH] Done. --- lib/dog.rb | 11 +++++++++++ lib/person.rb | 12 ++++++++++++ 2 files changed, 23 insertions(+) diff --git a/lib/dog.rb b/lib/dog.rb index e69de29b..f77d84aa 100644 --- a/lib/dog.rb +++ b/lib/dog.rb @@ -0,0 +1,11 @@ +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..c436396f 100644 --- a/lib/person.rb +++ b/lib/person.rb @@ -0,0 +1,12 @@ +class Person + + def talk + puts "Hello World!" + end + + + def walk + puts "The Person is walking" + end + +end