On Wed, Feb 16, 2011 at 5:23 PM, Mark Evenson evenson@panix.com wrote:
To use more CL-like language: a file "test.lisp" has a FASL "test.abcl". Our FASL is a zip of the initialization code ('%%%._'), the classes our bytecode compiler emits ('%%%-nnn.cls') for each top-level form in the corresponding ('%%%.lisp') source file. The contents of the bootstraip ('%%%._') are executed when this FASL is (re)loaded.
Replace "for each top-level form" with "for each function definition" and it's 100% correct ;)
A.