Skip to content

Instantly share code, notes, and snippets.

@SonVu
Created July 22, 2014 13:44
Show Gist options
  • Select an option

  • Save SonVu/d0c7f69ec5fe6911eb28 to your computer and use it in GitHub Desktop.

Select an option

Save SonVu/d0c7f69ec5fe6911eb28 to your computer and use it in GitHub Desktop.
class Foo
attr_accessor :name, :age, :email, :gender, :height
def initialize(name, age, email, gender, height)
@name = name
@age = age
@email = email
@gender = gender
@height = height
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment