Help for this page

Select Code to Download


  1. or download this
    # alternately, you may want to push them onto @perschecked
    for my $x ( 0 .. 2 ) {
        $perschecked[ $x ] = $files[ $x ] . ( $x + 1 );
    }
    
  2. or download this
    for my $x ( 0 .. 2 ) {
        $files[ $x ] .= ( $x + 1 );
    }