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