How can I "kill" a pure calculation which is taking too long? I tried
import System.Timeout
fact 0 = 1
fact n = n * (fact $ n - 1)
main = do maybeNum <- timeout (10 ^ 7) $ (return . fact) 99999999
print maybeNum
However, this doesn't work. Replace the (return . fact) 99999999 with a "real" IO function like getLine and this works as expected.


factbecome "real" IO action (fact 0 = return 1; fact n = (n *) `fmap` (fact $ n - 1)) thentimeoutworks as expected too. – Matvey Aksenov Apr 9 '12 at 10:04fmap, moved into theIOmonad. – leftaroundabout Apr 9 '12 at 10:11let x = x in xandlet x () = x () in x (). – Ganesh Sittampalam Apr 19 '12 at 11:28