The difference between the following two lines of code, other than the name of the symbol being defined
(define square (lambda (x) (* x x)))

(define (square2 x) (* x x))