Fork me on GitHub
#other-lisps
<
2020-01-03
>
fedreg17:01:20

For common lisp does anyone know if Slime has a step debugger like the cider debugger? ...I was sure it did but can't figure out how to access it... thx!

papachan17:01:11

With SBCL and Slime you can just do:

(declaim (optimize (debug 3)))
(step (myfunc))

fedreg17:01:36

:thinking_face: will try... thx!!