Hacker News new | ask | show | jobs
by AxelLuktarGott 1365 days ago
I guess it's subjective, but I prefer

  f = h <=< g

over

  f x = do
    y <- g x
    h y