super kotlin

// Step 1: Declare a class named `Person` with properties `name` and `age`
class Person(val name: String, val age: Int) 

// Step 2: Create an instance of the `Person` class with values "John" for name and 25 for age
val person = Person("John", 25)

// Step 3: Create a function named `printPersonDetails` that takes a `Person` object as a parameter
fun printPersonDetails(person: Person) {
    // Step 4: Print the details of the person using string interpolation
    println("Person details - Name: ${person.name}, Age: ${person.age}")
}

// Step 5: Call the `printPersonDetails` function with the `person` object as an argument
printPersonDetails(person)