![]() |
pLISP � '98 Thomas Mahler |
// apply applies function fun to its arguments args // E.g. (apply a �(3 3)) (define apply (macro (fun args) (cons fun (eval args) ) )) // defun is used to define functions in lisp style // and immediately compiles the new