Explicit Application of Functions
In Lisp, functions are “first class (Lisp) objects” and can be manipulated as data, e.g., passed as arguments to other functions.
They can be explicitly (as well as implicitly) applied.
; Implicit application of +
; Explicit application of +
> (apply (function +) (list 1 2 3))