- Define new Ruby classes with the
class
keyword. - Instantiate instances of a
class
.
This lab is all about defining classes and instantiating instances.
Open this lab with learn open
and run your tests with learn
.
Open lib/dog.rb
and add a class definition for a Dog
class.
Under your Dog
class definition, create three dogs in local variables, fido
, snoopy
, and lassie
.
Open lib/person.rb
and add a class definition for a Person
class.
Under your Person
class definition, create two people in local variables, adele_goldberg
and alan_kay
When you're done, submit the lab with learn submit
.
View Classes And Instances Lab Ruby on Learn.co and start learning to code for free.