Help for this page

Select Code to Download


  1. or download this
    open(FILE, "<file.txt");
    my @thing = <FILE>;
    ...
            push @crap,$_;
        }
    }
    
  2. or download this
    open(FILE, "<file.txt");
    while(local $_ = <FILE>) {
    ...
        }
    }
    close FILE;
    
  3. or download this
    open(FILE,"<file.txt");
    my $template = '';
    ...
        $template .= $line;
    }
    close FILE;
    
  4. or download this
    my $template = '';
    open(FILE, "<file.txt") && while($template .= <FILE>) {};
    close FILE;
    die "bad stuff happened" unless length $template;