reactormonk
setContent { ... suspend fun func1() { func2() } suspend fun func2() { func1() } }
func2
func1
dmitriy.novozhilov
... val x = y // y is not defined val y = x ...
Youssef Shoaib [MOD]
setContent { ... suspend fun func1(func2: suspend () -> Unit) { func2() } suspend fun func2() { func1(::func2) } suspend fun func1() = func1(::func2) }
A modern programming language that makes developers happier.