Programowanie w systemie UNIX/Haskell: Różnice pomiędzy wersjami

Usunięta treść Dodana treść
m →‎Składnia: pointfull
Linia 92:
<source lang=haskell>
-- Haskell
f . g -- pointfree style
f . g x -- pointfull style
f (g x) --
( f . g ) (x) --
</source>