Explicit Application of Functions and Functional Arguments
In Lisp, functions can be passed as arguments to other functions.
They can then be explicitly applied.
; Implicit application of +
; Explicit application of +
> (apply (function +) (list 1 2 3))