Function body

Replace the
...
in the function skeleton with an expression involving the parameter-names and whose value will produce the correct answer to the function.

For example, in the cube example, the skeleton

(define (cube num)
  ; num            number
  ... )
becomes
(define (cube number)
   ; num           number
   (* num num num) )
because the cube of a number is computed by multiplying together three copies of that number.
Last modified: Mon Aug 25 12:22:09 EDT 2008
Stephen Bloch / sbloch@adelphi.edu