Ticket #101 (closed defect: invalid)
Lazy list still results in stack overflow
| Reported by: | erikd@… | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Build System | Version: | |
| Keywords: | Cc: |
Description
Simple Sieve of Eratosthenes :
primes = sieve $ rangeInfIntL 2
sieve (p : xs) =
p : sieve [ x | x <- xs, x mod p > 0 ]
main =
print $ show $ take 30 primes
when run results in:
*** DDC RTS PANIC! Slot stack overflow. Aborted (core dumped)
Change History
Note: See
TracTickets for help on using
tickets.
