I am using slime along with clisp.
When I try out the following loop, I get NIL results in the *slime-repl clisp* buffer:
- Code: Select all
CL-USER> (loop for i in '(1 2 3) do (print i))
NIL
However, if I look over at the *inferior lisp* events buffer I see the expected:
- Code: Select all
1
2
3
Is this normal? If I should expect the output to print to my slime repl, any ideas how to fix this?