First of all, I know nothing about Common Lisp or any kind of Lisp. I am just begining to learn.
So I downloaded LispIDE in order to have an environment in which I can experiment. I wrote a very simple program:
(* 2 (cos 0) (+ 4 6))
which, according to this website, should print out 20.0.
Well, I'm able to save the file (as a .lisp) but I don't seem to be able to run it. I can't find a compile or run function anywhere in the IDE. I would also try compiling/running it from a command prompt but I'm not sure what to type for that.

