Most people that start with FP they use `Either` a...
# functional
r
Most people that start with FP they use
Either
and
Try
as main return types but that is usually wrong since neither of those can suspend side effects so all compositions you create are impure when mixing error handling.
👍🏼 1