dump-object file &rest objects [関数]
dump-loadable-structure file &rest symbols [関数]
(setq a (make-cube 1 2 3)) ;; sample for dump-object (dump-object "a-cube.l" a) (with-open-file (f "a-cube.l" :direction :input) (setq a (read f))) (print a) ;; sample for dump-structure (dump-structure "a-cube.l" a) (with-open-file (f "a-cube.l" :direction :input) (setq a (read f))) (print a) ;; sample for dump-loadable-structure (dump-loadable-structure "a-cube.l" a) (load "a-cube.l") (print a)