How to save lists containing functions to disk
- From: "javuchi" <javuchi@xxxxxxxxx>
- Date: 22 Nov 2005 20:06:31 -0800
Doing this in CMUCL:
(defun pp (x) (* x 2))
(compile 'pp)
(list 'a 'b (symbol-function 'pp))
I obtain this:
(A B #<Function PP {58A94879}>)
Is there any way to save the list to a file, including the compiled
function, and then, in another session, reload and use that function?
Thanks.
.
- Follow-Ups:
- Re: How to save lists containing functions to disk
- From: Pisin Bootvong
- Re: How to save lists containing functions to disk
- From: Pascal Bourguignon
- Re: How to save lists containing functions to disk
- Prev by Date: Indentation with print-object
- Next by Date: Re: Indentation with print-object
- Previous by thread: Indentation with print-object
- Next by thread: Re: How to save lists containing functions to disk
- Index(es):
Relevant Pages
|