Haskell Style Guide(github.com)2 points·by brainsmith·12 anni fa·1 commentsgithub.comHaskell Style Guidehttps://github.com/chrisdone/haskell-style-guide1 commentsPost comment[–]mooism2·12 anni fareply foo = foo . bar . mu $ zot bob means foo = (foo . bar . mu) (zot bob) not foo = (foo . bar . mu) zot bob
means
not