Skip to content

Instantly share code, notes, and snippets.

@ryanckulp
Created August 10, 2017 00:43
Show Gist options
  • Save ryanckulp/89e80def4ce9496750a34c150e68db29 to your computer and use it in GitHub Desktop.
Save ryanckulp/89e80def4ce9496750a34c150e68db29 to your computer and use it in GitHub Desktop.
class Person
attr_reader :name, :age
def initialize(name, age)
@name = name
@age = age
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment