I get a weird behavior with sbcl when I try the following code at the repl.
Why do I get such a behavior?
Apparently, this is related to the quote '(even).
If I replace it by (list 'even), I get the expected answer (EVEN EVEN).
As far as I understand from the spec, the mapcan call should be equivalent to
(mapcan (lambda (x) (if (evenp x) '(even))) (list 1 2 3 4))
Sbcl hangs at 100% CPU without returning an error.Why do I get such a behavior?
Apparently, this is related to the quote '(even).
If I replace it by (list 'even), I get the expected answer (EVEN EVEN).
As far as I understand from the spec, the mapcan call should be equivalent to
(apply #'nconc (mapcar (lambda (x) (if (evenp x) '(even))) (list 1 2 3 4)))
but then this code gives a heap exhaustion. I am puzzled.