
To better understand how you can make use of the debugger, try working through the following example session. In this example, you define the factorial function, save the definition to a file on disk, compile that file and then call the function erroneously.
A new file is created and displayed in the editor. If you have not already invoked the editor, it is started for you automatically.
fac to calculate factorial numbers.(defun fac (n)
(if (= n 1) 1
(* n (fac (- n 1)))))
The editor switches to the output view while compilation takes place. When prompted, press Space to return to the text view. The fac function is now available to you for use in the environment.
fac erroneously with a string argument. (fac "turtle") The environment notices the error: The arguments of = should be numbers, and one of them is not.
Take a moment to examine the backtrace that is printed in the Backtrace area.
fac function. The error displayed in the Condition box informs you that the = function is called with two arguments: the integer 1 and the string "turtle". Clearly, one of the arguments was not the correct type for = , and this has caused entry into the debugger. However, the arguments were passed to = by fac , and so the real problem lies in the fac function.
In this case, the solution is to ensure that fac generates an appropriate error if it is given an argument which is not an integer.
FAC in the Backtrace area of the debugger tool. The editor appears, with the cursor placed at the beginning of the definition for fac . Double-clicking on a line in the Backtrace area is a shortcut for choosing Frame > Find Source .
fac function so that an extra if statement is placed around the main clause of the function. The definition of fac now reads as follows:(defun fac (n)
(if (integerp n)
(if (= n 1) 1
(* n (fac (- n 1))))
(print "Error: argument must be an integer")))
The function now checks that the argument it has been passed is an integer, before proceeding to evaluate the factorial. If an integer has not been passed, an appropriate error message is generated.
fac , once again specifying a string as an argument. Note that the correct error message is generated.You can spot immediately what has gone wrong here, so the simplest strategy is to return a value to use.
You are prompted for a form to be evaluated in the listener.
6 , which is the value that would have been returned from the correct call to (length "turtle") . Having returned the correct value from (length "turtle") , fac is called with the correct argument and returns the value 720.