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