Created
July 22, 2014 20:53
-
-
Save bricker/4916d1b8224bf4dfbb43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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