Create a two-dimensional array at runtime: Difference between revisions

Line 35:
 
=={{header|AppleScript}}==
AWKAppleScript has no multidimensional array; but AWKAppleScript arrays (which are [[Associative array]] indeed)lists can be used also in a multidimensional fashion. Since AWKAppleScript arrayslists are associative arrays, there's no issue in their dimensions: they grow while adding new key-value pairelements.
 
<lang AppleScript>set R to text returned of (display dialog "Enter number of rows:" default answer 2) as integer
Anonymous user