<p dir="ltr">Hello Julian,</p>
<p dir="ltr">Prelude> let f g = g . g<br>
Prelude> let sum x y = x + y<br>
Prelude> f sum</p>
<p dir="ltr">If you are trying to call 'f' and see the result, args are missing.</p>
<p dir="ltr">If you are trying to create new type, use 'let'.<br></p>
<p dir="ltr">Prelude> (\x y -> x + y) . (\x y -> x + y)</p>
<p dir="ltr">Similar story. Let or args</p>
<p dir="ltr">;)</p>