Hello
I am trying to load a function lisp.
But there is an error :
(setf base nil)
Function : (defun find-wrong-word (str)
(dolist (word base)
(when (search word str :test #'string-equal)
(return-from find-wrong-word t))))
Error : Warning: Syntactic warning for form BASE:
BASE assumed special.
I don't understand where is the problem ?
I am trying to load a function lisp.
But there is an error :
(setf base nil)
Function : (defun find-wrong-word (str)
(dolist (word base)
(when (search word str :test #'string-equal)
(return-from find-wrong-word t))))
Error : Warning: Syntactic warning for form BASE:
BASE assumed special.
I don't understand where is the problem ?