This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Masuk
radu
/
LaTeX-examples
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Tarik Permintaan
0
Wiki
Pohon:
9fa7cdfea0
Ranting
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
function-composition.hs
function-composition.hs
47 B
Riwayat
Mentahan
1
2
3
4
f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)