I write code in SBCL, and ordering my functions causes the following warnings to appear when uploading files to REPL:
;caught STYLE-WARNING:
undefined function: FOO
Where FOOis the function symbol. This is explained only by how they are ordered in my file, because a function is defined FOO, but not before the part of the code that issues this warning.
Now, in Clojure, which is Lisp that I'm familiar with, I have a form declarethat allows me to make declarations to avoid such a problem. Is there something similar for SBCL / Common Lisp in general?
source
share