Lisp for HTML Generation
Lisp Execution Forms:
- A List S-Expression where the first element names the function being called and the remaining elements are the arguments.
- (function arg1 arg2 …)
- (+ 4 5)
- (make-array '(5 6) :element-type 'double-float)
- (aref array 0 3)
- (print value)
- (defun my-add-6 (arg) (+ arg 6))