// Define a new method named ageUp
// Check if the age is higher than or equals to 65
// If the age equals 65, congratulate them with their retirement
print("Congratulations on your retirement, " + self.name + "!")
// Return that they are indeed at the retirement age
// Return that they are not at the retirement age
ash := Person({ name: "Ash", age: 63 });
// Ages Ash up to 64, retired will equal to false
// Ages Ash up to 65, retired will equal to true
// And "Congratulations on your retirement, Ash!" will be printed
// Ages Ash up to 66, retired will equal to true
// Nothing will be printed
// ashAge will equal to 66