This website works better with JavaScript
Etusivu
Tutki
Apua
Kirjaudu sisään
radu
/
LaTeX-examples
Tarkkaile
1
Äänestä
0
Fork
0
Tiedostot
Ongelmat
0
Pull-pyynnöt
0
Wiki
Puu:
9fa7cdfea0
Branchit
Tagit
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
lazy-evaluation.hs
lazy-evaluation.hs
73 B
Historia
Raaka
1
2
3
4
5
6
g a b c
| c > 0 = b
| otherwise = a
main = do
print (g (1/0) 2 3)