Help for this page

Select Code to Download


  1. or download this
    foreach $num (@test) {
    print $test[$num] . "\n";
    }
    
  2. or download this
    for($num=0;$num<@test;$num++) {
    print $test[$num] . "\n";
    }
    
  3. or download this
    print $_ . "\n" foreach @test;