I have an output file opened of type union (for mixed types):

f : File Union(List Integer, String) := open("test.out", "output")
write!(f, [1,2,3,4,5,6,7,8])
write!(f, "0123456789")
close!(f)

Here's the content of test.out:

(0 1 2 3 4 5 6 7 8) 

(1 . "0123456789")

The 2nd line containing the string doesn't look right. How do I print the 
string itself (without the prefix 1.) and without the double-quotes?

-- 
You received this message because you are subscribed to the Google Groups 
"FriCAS - computer algebra system" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/fricas-devel/30614e1e-373e-4c50-b522-67a6e4642228n%40googlegroups.com.

Reply via email to