try this ``` fun invokeConsumerFunction(consumer: ...
# getting-started
l
try this
Copy code
fun invokeConsumerFunction(consumer: (Int) -> Unit) {

    consumer(123)
}
and method reference as described above