I have two files, a utils file where I have defined a lot of constants, like this:
(defconstant peca-l0 (make-array (list 3 2) :initial-contents '((T T)(T nil)(T nil))))
(defconstant peca-l1 (make-array (list 2 3) :initial-contents '((T nil nil)(T T T))))
(defconstant peca-l2 (make-array (list 3 2) :initial-contents '((nil T)(nil T)(T T))))
(defconstant peca-l3 (make-array (list 2 3) :initial-contents '((T T T)(nil nil T))))
And another file where I'm defining the functions. I load this file like this:
(load "utils.fas")
However, every time I try to use them I have a warning:
WARNING: in ACCOES in lines 121..174: PECA-L1 is neither declared nor bound, it will be treated as if it were declared SPECIAL.
How can I fix this?
Thanks