Can anyone explain this to me? I'm using a recent version of the GHC.
Prelude> let f x = 1/((x**2)-36)
Prelude> f (0 - 6.5)
0.16
Prelude> f (0 - 5.999)
-Segmentation fault
Prelude> f (0 - 5)
-Segmentation fault
Thanks!
Edit: GHCi version 6.10.4, Mac OS 10.6, Intel Macbook Pro
Edit2: GHCi 7.0.3 doesn't have this problem.
