Help for this page

Select Code to Download


  1. or download this
    my $foo = $/;
    undef $/;
    my $bar = <>;
    $/ = $foo;
    
  2. or download this
    my $foo;
    $foo .= $_ while <>;
    
  3. or download this
    my $foo;
    my @bar = <>;
    $foo .= $_ foreach @bar;
    
  4. or download this
    my $foo;
    { local $/; $foo = <>; }