Including an example

Before defining the cube function, which is:
(define (cube num)
      (* num num num))

you need to include an example of how the function is called: (cube 5)
along with what its answer "should be": 125.

So for this question, your definitions window should say:
;(cube 5) "should be" 125
(define (cube num)
     (* num num num))




Last Modified: 9/26/06