This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am ryank01 on github. | |
* I am ryank01 (https://keybase.io/ryank01) on keybase. | |
* I have a public key ASAvk2Yw51SzCujgOBnzB5D_3Y7LRMUn1WVDFXHCPjXS_Qo | |
To claim this, I am signing this object: |
This file contains 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 Dog | |
attr_accessor :name, :breed | |
def initialize(breed, name) | |
@breed = breed | |
@name = name | |
end | |
def bark | |
puts "woof" | |
end |
This file contains 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 Dog | |
attr_accessor :name, :breed | |
def initialize(breed, name) | |
@breed = breed | |
@name = name | |
end | |
def bark | |
puts "woof" | |
end |