Sergio Crespo Toubes
val result<Either<String, Int>> = fx { val a = Right(5) val b = Left("Error") val c = Right(2) val d = a + b + c d }
fx