Re: $foo[0][0] versus $foo[0;0]

2008-07-17 Thread Nicholas Clark
On Wed, Jul 16, 2008 at 10:04:03AM -0700, Larry Wall wrote: On Sun, Jul 13, 2008 at 02:17:10PM -0500, Adrian Kreher wrote: : Hi, : : I'm reviewing the tests in S09, and the file : t/spec/S02-builtin_data_types/multi_dimensional_array.t uses the [0][0] : indexing format interchangeably

Re: $foo[0][0] versus $foo[0;0]

2008-07-16 Thread Larry Wall
On Sun, Jul 13, 2008 at 02:17:10PM -0500, Adrian Kreher wrote: : Hi, : : I'm reviewing the tests in S09, and the file : t/spec/S02-builtin_data_types/multi_dimensional_array.t uses the [0][0] : indexing format interchangeably with [0;0]. : : These two formats mean two different things,

$foo[0][0] versus $foo[0;0]

2008-07-13 Thread Adrian Kreher
Hi, I'm reviewing the tests in S09, and the file t/spec/S02-builtin_data_types/multi_dimensional_array.t uses the [0][0] indexing format interchangeably with [0;0]. These two formats mean two different things, correct? The [0][0] form isn't mentioned much in the spec, nor is [0;0] or if they