Hacker News new | ask | show | jobs
Haskell Style Guide (github.com)
2 points by brainsmith 4482 days ago
1 comments

    foo = foo . bar . mu $ zot bob
means

    foo = (foo . bar . mu) (zot bob)
not

    foo = (foo . bar . mu) zot bob