<@U4UGS5FC7> The correct way for my example is ```...
# arrow
s
@raulraja The correct way for my example is
Copy code
val result1 = fx {
			val a = !Right(5).liftIO()
			val b = !Left("Error").liftIO()
			val c = !Right(2).liftIO()
			c
		}
??