Why pursue not stopping after the first message output?
My code is
CPL> (top-level
(pursue
(format t "First~%")
(format t "Third~%")
(format t "Second~%"))
)
First
Third
Second
NIL
CPL>
Why answer is not just 'First'?
Because cram tutorials doc says : 'Only the first form is executed. The other forms are evaporated.'
Thank you~