Question: How to save a Record to a text file in human readable way?

Suppose a Record is created as follows in Maple.

> r := Record( foo = [ ... ], bar = Record( ... ), ... );

If this is saved with save() command to a text file, a new line is automatically inserted at every fixed character length, and it is very hard to read. I want the Record to be stored to a text file in more human readable way. Is there any good way to do that easily?

--

H.Ito

Please Wait...