Skip to content

Instantly share code, notes, and snippets.

Created August 9, 2010 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/515749 to your computer and use it in GitHub Desktop.
Save anonymous/515749 to your computer and use it in GitHub Desktop.
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
end
class Programmer < Person
attr_accessor :programming_ability
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment