Got it i think: ```Either.applicative<Int>()...
# arrow
t
Got it i think:
Copy code
Either.applicative<Int>().mapN(a, b, c) { (a, b, c) ->
    listOf(a, b, c)
}.flatMap { 
    it.right()
}.fold(
    ifLeft = { println("try again :(") },
    ifRight = { println("success: $it") }
)