(define (thing stuff) (cond ((= stuff 1) 1) (else (* stuff (thing stuff))))) (thing 5)