Skip to content

Instantly share code, notes, and snippets.

@tansengming
Created August 19, 2009 07:10
Show Gist options
  • Save tansengming/170219 to your computer and use it in GitHub Desktop.
Save tansengming/170219 to your computer and use it in GitHub Desktop.
class Name
def name
first + ' ' + last
end
def first
@first ||= 'SengMing'
end
def last
@last ||= 'Tan'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment