Common Lisp: Does `load` do `compile-file` things?
Suppose I have a file named "includes.cl", inside which there are several
function definitions. Now I have two ways to use these functions:
(load "includes.cl")
(load (compile-file "includes.cl"))
Is the latter faster than the former? I only concern the runtime speed of
function invoking.
No comments:
Post a Comment