Help for this page

Select Code to Download


  1. or download this
    for($x=0; $x<3;$x++){
        for($y=0; $y<3;$y++){
            print $lines[$y][$x], " ";
        }
    }
    
  2. or download this
    map {
        my $x=0;
    ...
        } @$_;
    
    } @lines;
    
  3. or download this
    #!/usr/bin/perl
    use CGI::Pretty qw(:standard);             # import CGI objects and fu
    +nctions
    ...
       );
    
    }