...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.