Skip to content

Instantly share code, notes, and snippets.

View oggy's full-sized avatar

George Ogata oggy

  • Rhino
  • New York, NY
View GitHub Profile
class Person
attr_reader :full_name, :age, :profession, :favorite_food
def initialize(full_name, age, profession, favorite_food)
@full_name = full_name
@age = age
@profession = profession
@favorite_food = favorite_food
end
end