Re: List within a List
Re: List within a List
- Subject: Re: List within a List
- From: "Jeffrey L. McLean" <email@hidden>
- Date: Sun, 01 Apr 2001 21:13:02 -0400
>
From: email@hidden (Frank Watzl)
>
Date: Sat, 17 Mar 2001 03:20:28 +0100
>
To: Applescript Mailing List <email@hidden>
>
Cc: Pier Kuipers <email@hidden>
>
Subject: Re: List within a List
>
>
set theFirstList to {"A", "B"}
>
set theSecondList to {"B", "C"}
>
set newlist to {theFirstList} & {theSecondList}
>
-->{{"A", "B"}, {"B", "C"}}
If later I wanted to get the list, could be done with something like this
set ListA to the first list of newList
--> {"A", "B"}
set ListB to the second list of newList
--> {"B", "C"}