Re: Storing Multiple Lists?
Re: Storing Multiple Lists?
- Subject: Re: Storing Multiple Lists?
- From: John Stewart <email@hidden>
- Date: Tue, 6 May 2003 19:08:02 -0400
On Tuesday, May 6, 2003, at 04:07 PM, Mario Kolaszewski wrote:
Is it possible to store multiple lists in a single variable?
Mario
Certainly
set ml to {{"a", "b"}, {1, 2}, {"A", "B"}, {3, 4}}
set v to item 2 of (item 3 of ml)
--> "B"
copy {"c", "d"} to end of ml
return ml
--> {{"a", "b"}, {1, 2}, {"A", "B"}, {3, 4}, {"c", "d"}}
John
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.