Help for this page

Select Code to Download


  1. or download this
    foreach my $line (<MVMT>)
    {
        print $line;
    }
    
  2. or download this
    my @foo;
    foreach my $line (<MVMT>)
    ...
       push( @foo, $line );
    }
    my $file = join('', @foo);