This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Giriş Yap
radu
/
LaTeX-examples
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Değişiklik İstekleri
0
Wiki
Ağaç:
2c4f3e97bf
Dallar
Biçim İmleri
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
function-composition.hs
function-composition.hs
47 B
Geçmiş
Ham
1
2
3
4
f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)