Help for this page

Select Code to Download


  1. or download this
    my $array_ref =
    [
    ...
        [ 234, 567 ],
        [ 345, 678 ]
    ];
    
  2. or download this
    my $pos = $array_ref->[$x][$y];
    
    my $row = $array_ref->[$x];
    my $column = $row->[$y];