This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
radu
/
LaTeX-examples
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
1938222321
Větve
Značky
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
lazy-evaluation.hs
lazy-evaluation.hs
73 B
Historie
Surový
1
2
3
4
5
6
g a b c
| c > 0 = b
| otherwise = a
main = do
print (g (1/0) 2 3)