function_body
function_body — gives the body of a user-defined function.
function_body (function)
functionAny function.
The function definition in Lisp syntax if the function is user-defined,
else nil.
This function shows the body of a user-defined function in Lisp syntax.
Gamma>function g(a,b,c) {(a * b)/c;}(defun g (a b c) (/ (* a b) c))Gamma>function_body(g);#0=((/ (* a b) c))Gamma>function h(r,s) {sin(r)/cos(s) * tan(s);}(defun h (r s) (* (/ (sin r) (cos s)) (tan s)))Gamma>function_body(h);#0=((* (/ (sin r) (cos s)) (tan s)))Gamma>function_body(sort);nilGamma>