Help for this page

Select Code to Download


  1. or download this
    for my $x (0..21) {
      for my $y (0..79) {
         do_stuff($vscr[$x][$y]);
      }
    }
    
  2. or download this
    for my $x (0..$#vscr) {
      for my $y (0..$#{$vscr[$x]}) {
         do_stuff($vscr[$x][$y]);
      }
    }