Help for this page

Select Code to Download


  1. or download this
    $vscr[$x][$y];
    
  2. or download this
    foreach my $x (@vscr) {
      foreach my $y (@$x) {
        &do_stuff($y);
      }
    }
    
  3. or download this
    foreach my $row (0..21) {
      foreach my $col (@vscr) {
        &do_stuff($col[$row]);
      }
    }