Is there a way to save a structure to a file in GAP? For example :
data:=rec();
data.Name:="random matrix";
data.Value:=RandomMat(3,4);
data.Rank:=2;
How would I save "data" to a file so it can be read from GAP at a future session? and how would I read it back in. (I don't want to save the entire workspace, just the records I want to use later).
LogTo(filename);. – Shaun Apr 01 '22 at 23:16