From 82c5b77bf6f1967e879218ab7202464c4ef9b9bb Mon Sep 17 00:00:00 2001 From: Damian Malysza Date: Sat, 3 Oct 2020 00:26:30 +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..a1f08896 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..df7499b8 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