j
k
j a
j l
Bas van Dijk writes:
throwIOs :: Int -> IO () throwIOs 0 = return () throwIOs n = throwIO DivideByZero `catch` \DivideByZero -> throws (n-1)
Should that perhaps be "throwIOs (n-1)" in the recursive case? G -- Gregory Collins
Back to the thread
Back to the list