9.6 The stepper

9.6.1 Examples

The following examples demonstrate the use of some of these commands.

CL-USER 1 > (step (+ 1 (* 2 3) 4))
(+ 1 (* 2 3) 4) -> :s
   1 -> :s
   1
   (* 2 3) -> :su
   6
   4 -> :s
   4
11
11

CL-USER 2 > (defun foo (x y) (+ x y))
FOO

CL-USER 3 > step (foo (+ 1 1) 2)
(FOO (+ 1 1) 2) -> :st
   (+ 1 1) -> :s
     1 -> :s
     1
      1 -> :s
     1
   2
   2 -> :s
   2
4
4

9.6.1.1 - Interaction
9.6.1.2 - Showing the step level

FreeLisp User's Guide - 5 FEB 1996

Generated with Harlequin WebMaker