Hello, how can i do this with fx? ```val result&lt...
# arrow
s
Hello, how can i do this with fx?
Copy code
val result<Either<String, Int>> = fx {
    val a = Right(5)
    val b = Left("Error")
    val c = Right(2)
    val d = a + b + c
    d
}
I want to stop the
fx
execution when error appear.