Search found 2 matches

by Neonsquare
Fri May 15, 2009 12:26 pm
Forum: Common Lisp
Topic: thoughts on CL project organization
Replies: 4
Views: 7408

Re: thoughts on CL project organization

I usually use ASDF to package my code, but do not use that symbolic link .asd managing stuff. I have setup a hierarchical folder structure where I just drop the ASDF packages folder at the right place. Some function grovels over all folders, collection *.asd and adding each folder that has a *.asd o...
by Neonsquare
Sat Nov 29, 2008 8:11 am
Forum: Common Lisp
Topic: Using static typing in CL
Replies: 5
Views: 16626

Re: Using static typing in CL

Not quite. Declarations are checked at compile-time as much as they can be and the compiler will generate an error if it finds a conflict. With multiple compilation modules, runtime code generation, etc., this cannot be a perfect net, however. Thus, type errors can still occur. (I'd note that with ...