Lists are used to define and call functions
To define a function use the operator defun
Specify function name, list of argument names, then body of function
(defun my-square (x)
(* x x))
(my-square 7) ==> 49
Previous slide
Next slide
Back to first slide
View graphic version