Tutorial on sequences
- Posted by Karlheinz Nester <Karlheinz_Nester at COMPUSERVE.COM> Aug 14, 1998
- 709 views
Hi to any Euphorian who knows a lot about sequences,
I like to add a sequence (append) to another sequence.
For example :
given :
seq1 =3D {{1,2,3,4},{5,6,7,8},{9,10,11,12}}
seq2 =3D {20,30,40}
result should be:
seq1 =3D {{1,2,3,4,20},{5,6,7,8,30},{9,10,11,12,40}}
How can this be done without much overhead ??
I believe it is easy,but I can't get it.
TIA Karlheinz =
=

