kittinunf
public fun sth(f: () -> String) { if (f() == “hello") { } } sth( { “hello" }) public fun sth(@autolambda f: () -> String) { if (f() == “hello") { } } sth(“hello”)