Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
    open LOG, '>', $outfile or die "Unable to create $outfile: $!";
    print LOG join "\n", @inlog;
    close LOG;
    
  2. or download this
    @array = ();
    
  3. or download this
    @array = <FILE>;
    
  4. or download this
    my $var1;
    my $var2;