Is there an equivalent to Haskell's $
operator in OCaml, or do I have to rely on brackets? See for example,
multiplyByFive 5 + 1 -- 26
but
multiplyByFive $ 5 + 1 -- 30
Is there an equivalent to Haskell's $
operator in OCaml, or do I have to rely on brackets? See for example,
multiplyByFive 5 + 1 -- 26
but
multiplyByFive $ 5 + 1 -- 30