A function. Applying a procedure has the form:
(procedure arg1 arg2 ...)Infinite Argument Procedure
(define (function-name arg1 arg2 . rest-args-list)
; body stuff
)A function. Applying a procedure has the form:
(procedure arg1 arg2 ...)(define (function-name arg1 arg2 . rest-args-list)
; body stuff
)