mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
6 lines
73 B
Haskell
6 lines
73 B
Haskell
|
g a b c
|
||
|
| c > 0 = b
|
||
|
| otherwise = a
|
||
|
|
||
|
main = do
|
||
|
print (g (1/0) 2 3)
|