There are three buttons you can use to step through your code. These are the three left-most icons on the Debug toolbar. In sequence, they represent the following actions:
getdist function nested within a setq function, and the cursor is positioned at the very beginning of the highlighted block.
Before you make a selection, take another look at the status of the highlighted code, the cursor position, and the Step Indicator button. In summary: an expression is highlighted, consisting of aTo step through the code from the breakpoint
After you choose the Step Over button, control passes to AutoCAD and you are prompted to specify the width of the path.
After you specify the width, control passes back to VLISP. Notice where your cursor is and what the step indicator button shows.
VLISP evaluates the entire highlighted expression, then stops at the end of the expression.
cons function is highlighted, and VLISP is stopped right before the function (notice the Step Indicator button).
Now the first