This website works better with JavaScript
Domovská stránka
Prehľadávať
Pomoc
Prihlásiť sa
radu
/
LaTeX-examples
Pridať medzi pozorované
1
Hviezda
0
Fork
0
Súbory
Issues
0
Pull requesty
0
Wiki
Strom:
9fa7cdfea0
Branche
Tagy
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
lazy-evaluation.hs
lazy-evaluation.hs
73 B
História
Raw
1
2
3
4
5
6
g a b c
| c > 0 = b
| otherwise = a
main = do
print (g (1/0) 2 3)