So I read that DrRacket is a good IDE for common lisp. I downloaded it and have set the language as R5RS and written the following function definition:
(defun f (x)
(+ 5 5))
However it's returning an error
defun: undefined;
cannot reference undefined identifier
And I have no clue how to fix it, considering that defun is a well established keyword in common lisp.