Help for this page

Select Code to Download


  1. or download this
    open (my $in_fh, $infile) or die;
    local $/; # enable slurping mode
    my $data = <$in_fh>;
    close $in_fh;
    
  2. or download this
    my $data = handoverthedata();
    (...)
    ...
        # Data
        return $foo;
    }