Saving sequences
- Posted by znorq2 Jul 01, 2009
- 1083 views
Hi,
Is there a set of routines that saves and loads sequences? (Eu v3) I want to be able to save it in a binary file format, and then restore it in it's original form...
Let's say that I have the following code;
atom TRUE = (1=1) sequence mySeq, myNewSeq mySeq = {"This is a test", {9999999999,{1010111100011, {}},"blahblah"}, -1, TRUE} myNewSeq = {} saveSequence("sequencefile.bin", myTest) -- Just an example loadSequence("sequencefile.bin", myNewSeq) -- Just an example
Result: myNewSeq = {"This is a test", {9999999999,{1010111100011, {}},"blahblah"}, -1, TRUE}
Kenneth / ZNorQ