Hacker News new | ask | show | jobs
by solinent 2713 days ago

    g f x 
would not be the same as

    (g . f) x
you need the right associative function application operator $, ie.

    g $ f x
or simply

    g (f x)
1 comments

i know that, i was just highlighting the appearance of the order of the letters without considering associativity.