I like the typealias idea, I think this looks pret...
# announcements
k
I like the typealias idea, I think this looks pretty good
Copy code
typealias Action = () -> Unit
val list = mutableListOf<Action>(
    { /* one function */ }, 
    { /* second function */ } 
)