``` fun someMethod(name: String, ...
# getting-started
s
Copy code
fun someMethod(name: String,
                   age: Int,
                   salary: Int = 10,
                   apple: Int = 5,
                   str: String = "hello") : String {
        return "$name $age $salary $apple $str"
    }
someMethod("some name", 24, salary, 4)
How do I call the default value of salary?