Function
hcl
with-output-to-fasl-file (stream pathname &rest options) &body body => nil
Stream corresponding to the fasl file to be created.
Name of the fasl file to be created.
Forms, some of which may be dumped.
nil.with-output-to-fasl-file is used in conjunction withdump-form to dump selected forms. Machine Architecture | Fasl File Extension |
|---|---|
Alpha |
|
RS/6000 |
|
HPPA |
|
DECstation |
|
SPARC |
|
Clipper |
|
| |
Other PC |
|
system:*binary-file-type*. The variablesystem::*binary-file-types* contains a list of all the file extensions currently recognized byload.
SYSTEM 5 > (with-output-to-fasl-file (s "/tmp/foo.fasl")
(dump-form '(print 'hello) s))
0
NIL
SYSTEM 6 > (load "/tmp/foo.fasl")
; Loading fasl file /tmp/foo.fasl
HELLO
#P"/tmp/foo.wfasl"
dump-formdump-forms-to-file