Hacker News new | ask | show | jobs
by scriptdevil 3329 days ago
f $ x y $ z

Basically, f $ x = f x and is applied with lowest operator precedence (0) and is right associative. Therefore, f $ x y $ z = f (x y $ z) = f((x y) z)