Skip to content

Instantly share code, notes, and snippets.

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