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

(thing 5)