rtsketo
fun foo(() -> Unit): Unit = ... suspend foo(suspend () -> Unit): Unit = ...
foo(..)
foo { }
ephemient
private inline fun fooImpl(() -> Unit): Unit = ... fn foo(() -> Unit): Unit = fooImpl(...) suspend fun foo(suspend () -> Unit): Unit = fooImpl(...)
louiscad
A modern programming language that makes developers happier.