Created
September 15, 2018 17:05
-
-
Save joel-extremo/199bc20490a8195c855d8e2549eb7011 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Pet | |
attr_reader :color, :breed | |
attr_accessor :name | |
def initialize(color, breed) | |
@color = color | |
@breed = breed | |
@hungry = true | |
end | |
def feed(food) | |
puts "Mmmm, " + food + "!" | |
@hungry = false | |
end | |
def hungry? | |
if @hungry | |
puts "I'm hungry!" | |
else | |
puts "I'm full!" | |
end | |
@hungry | |
end | |
end | |
class Cat < Pet | |
def speak | |
puts "Meow!" | |
end | |
end | |
class Dog < Pet | |
def speak | |
puts "Woof!" | |
end | |
end | |
kitty = Cat.new("yellow", "Persian") | |
puppy = Dog.new("black", "Staffordshire Terrier") | |
breakChunk = '/******************/' | |
puts 'DOG' | |
puppy.speak | |
puts puppy.breed | |
puts 'CAT' | |
puts "Let's inspect our new cat:" | |
puts kitty.inspect | |
puts "What class does our new cat belong to?" | |
puts kitty.class | |
puts "Is our new cat an object?" | |
puts kitty.is_a?(Object) | |
puts breakChunk | |
puts "Let's give our new cat a name" | |
kitty.name = "Betsy" | |
puts kitty.name | |
puts breakChunk | |
puts "Is our cat hungry now?" | |
kitty.hungry? | |
puts "Let's feed our cat" | |
kitty.feed("tuna") | |
puts "Is our cat hungry now?" | |
kitty.hungry? | |
puts breakChunk | |
puts "Our cat can make noise" | |
kitty.speak | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment