This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
radu
/
LaTeX-examples
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Pull-pyynnöt
0
Wiki
Puu:
bb674b307b
Branchit
Tagit
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
function-composition.hs
function-composition.hs
47 B
Historia
Raaka
1
2
3
4
f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)