pLISP Start Page   pLISP
� '98 Thomas Mahler

Libray of basic Lisp functions


Some useful macros

 // 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