16 Jan
2002
16 Jan
'02
5:18 p.m.
The following behaviour of infinite recursion seems exaggerated: script test.hs contains only undef :: Int->Int undef x = undef x + 1
:l test :t undef undef:: Int->Int undef 1 Segmentation fault
Shouldn't this rather run into an infinite loop or a memory overflow. But segmentation fault? Best, Bernhard