-
-
Save csexton/515754 to your computer and use it in GitHub Desktop.
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 Person | |
attr_accessor :name, :weight | |
#want to set a default for @weight in here | |
#Tried @weight ||= 45 and | |
# @weight = 45 and | |
# self.weight = 45 | |
def initialize | |
@weight = 45 | |
end | |
end | |
class Programmer < Person | |
attr_accessor :programming_ability | |
end | |
Programmer.new.weight | |
# => 45 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment