2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/function-composition.hs
2014-03-25 19:48:20 +01:00

4 lines
No EOL
47 B
Haskell

f x = x * x
g x = x - 1
h = (f . g)
i = (g . f)