Skip to content

Instantly share code, notes, and snippets.

@bricker
Created July 22, 2014 20:53
Show Gist options
  • Select an option

  • Save bricker/4916d1b8224bf4dfbb43 to your computer and use it in GitHub Desktop.

Select an option

Save bricker/4916d1b8224bf4dfbb43 to your computer and use it in GitHub Desktop.
class Person
def initialize(id, name, location)
@id = id
@name = name
@location = location
end
end
person = Person.new(id="0001", name="bricker", location="CA")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment