Dada la función foo:
fun foo(m: String, bar: (m: String) -> Unit) {
bar(m)
}
Podemos hacer:
foo("a message", { println("this is a message: $it") } )
//or
foo("a message") { println("this is a message: $it") }
Ahora, digamos que tenemos la siguiente función:
fun buz(m: String) {
println("another message: $m")
}
¿Hay alguna manera de pasar "buz" como parámetro a "foo"? Algo como:
foo("a message", buz)