Skip to content

Instantly share code, notes, and snippets.

@ukstudio
Created April 3, 2009 08:45
Show Gist options
  • Select an option

  • Save ukstudio/89675 to your computer and use it in GitHub Desktop.

Select an option

Save ukstudio/89675 to your computer and use it in GitHub Desktop.
ruby << EOF
class Person
attr_accessor :name, :age
def initialize(name, age)
@name = name
@age = age
end
end
ukstudio = Person.new("ukstudio", 22)
p ukstudio
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment