Help for this page

Select Code to Download


  1. or download this
    my @a;
    foreach(1..50){
    ...
        print;
    }
    close(T);
    
  2. or download this
    foreach(@ARGV){
        print "$_\n";
    }