Help for this page

Select Code to Download


  1. or download this
    for ( 1..3 )
    {
        $x = $_;
    }
    print "\$x is $x\n";
    
  2. or download this
    for ( 1..3 )
    {
       my $x = $_;
    }
    print "\$x is $x\n";