2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/lazy-evaluation.hs

6 lines
73 B
Haskell
Raw Normal View History

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