Newsgroups: comp.lang.lisp
Path: cantaloupe.srv.cs.cmu.edu!bb3.andrew.cmu.edu!newsfeed.pitt.edu!godot.cc.duq.edu!newsgate.duke.edu!news.mathworks.com!newsfeed.internetmci.com!in2.uu.net!hearst.acc.Virginia.EDU!murdoch!pearson.stat.Virginia.EDU!my2x
From: my2x@pearson.stat.Virginia.EDU (Timothy Yi)
Subject: saving lisp object into a file
X-Nntp-Posting-Host: pearson.stat.virginia.edu
Message-ID: <DtwKov.AJv@murdoch.acc.Virginia.EDU>
Sender: usenet@murdoch.acc.Virginia.EDU
Organization: The University of Virginia
Date: Tue, 2 Jul 1996 06:29:18 GMT
Lines: 18


I have a folling object to save, and read later on.

(setf a '((1 2) (1 3) (2 3)) )
(setf b '((2 3) (2 5) (3 5)) )
(setf c (make-array 2) )
(setf (aref c 0) a)
(setf (aref c 1) b)

i would like to save "c" into a file. but all i could save was
#<Simple-Vector T 2 A4098E>

btw, i am using sun common lisp 4.0
anyone can help me?

-tim

moon@virginia.edu
