I am new to LISP and was wondering how to correctly run a simple lisp program on Ubuntu Linux. Currently, I have a LISP file called “intmax.lisp” that contains the following code: (defun intmax (x y) (if (> x y) x y)) However, when I go to the command line and run: clisp intmax 2 4 To compare 2 and