in reply to Re^2: Creating and Accessing 3-D array
in thread Creating and Accessing 3-D array

The equivalent without autovivification of the snippet using autovivification is

( ( $sheets[$sheet] //= [] )->[$row] //= [] )->[$col] = 0;

Your choice.