DEV Community

Discussion on: Staring at ($), (< $ >), (< * >) and (>>=)

Collapse
 
cipharius profile image
Valts Liepiņš

Thanks for the article, this is something to meditate on!

It seems that there is a mistake in the 3. example of bind where

Right 1 >>= (\x -> Left (show x))

should result in

--> Left "1"
Collapse
 
riccardoodone profile image
Riccardo Odone

Thank you for the kind words. Great catch, fixed!