This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Prihlásiť sa
radu
/
LaTeX-examples
Pridať medzi pozorované
1
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Wiki
Strom:
19c2ef6eec
Branche
Tagy
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
function-composition.hs
function-composition.hs
47 B
História
Raw
1
2
3
4
f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)