Help for this page

Select Code to Download


  1. or download this
    foreach my $row (0 .. $lastRow)
    {
    }
    
  2. or download this
    my $screen = ' ' x ($rows * $columns);
    foreach my $row (0 .. $rows-1)
    ...
      my $text = join('', @_);
      substr($screen, $y * $columns + $x, length($text), $text);
    }