This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
radu
/
LaTeX-examples
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
9fa7cdfea0
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
lazy-evaluation.hs
lazy-evaluation.hs
73 B
Cronologia
Originale
1
2
3
4
5
6
g a b c
| c > 0 = b
| otherwise = a
main = do
print (g (1/0) 2 3)