ruby constructor

class Person
  def initialize(name, age)
    @name = name
    @age = age
  end
end

person1 = Person.new("Alice", 30)