This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
radu
/
LaTeX-examples
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
bb674b307b
Větve
Značky
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
function-composition.hs
function-composition.hs
47 B
Historie
Surový
1
2
3
4
f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)