function_name
function_name — gives the name of a function.
function_name (function)
functionAny function.
The name of the function.
Gamma>function grand(a,b,c) {(a * b)/c;}(defun grand (a b c) (/ (* a b) c))Gamma>function_name(grand);grandGamma>s = grand;(defun grand (a b c) (/ (* a b) c))Gamma>function_name(s);grandGamma>function f () { nil; }(defun f () nil)Gamma>function g (x) { princ (function_name(x), "\n"); }(defun g (x) (princ (function_name x) "\n"))Gamma>g (f);f tGamma>