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/lazy-evaluation.hs

6 lines
No EOL
73 B
Haskell

g a b c
| c > 0 = b
| otherwise = a
main = do
print (g (1/0) 2 3)