0 votes
in LISP by
Mention what are the three functions required by LISP?

1 Answer

0 votes
by

For defining functions, macro named defun is used, it needs three arguments

• Name of the function

• Parameters of the function

• Body of the function

...