Sam
suspend
Youssef Shoaib [MOD]
Adam S
https://www.youtube.com/watch?v=2SpeJj7BUs4▾
CLOVIS
class StateMachine { private var currentState = State.Initial fun next(action: Action) { when (action) { Action.A -> Action.B -> } } }
val StateMachine = stateMachine { waitFor(Action.A) // … select { onAction(Action.A) -> … onAction(Action.B) -> … } }
A modern programming language that makes developers happier.