We will learn a bit of Lisp in this course:
(defun myabs (x) (if (< x 0) (- x) x ) )
Contents    Prev    Next    Page+10    Index