COPY TO a list vs. SET TO a list
COPY TO a list vs. SET TO a list
- Subject: COPY TO a list vs. SET TO a list
- From: Olivier Berquin <email@hidden>
- Date: Tue, 18 Dec 2001 09:31:30 +0100
Hello all,
Here is a script:
--
set theList to {,
{"Olivier", 2, 3, 5, 108}, ,
{"Martin", 17, 19, 20, 21}, ,
{"Frank", 4, 8, 48}}
set item 2 of theList to item 2 of theList & 6
copy 57 to end of item 3 of theList
--
What's the better way and why ?
TIA
Olivier.