Help for this page

Select Code to Download


  1. or download this
    my $poem;
    
    ...
            local $/ = undef;
            $poem = <DATA>;
    }
    
  2. or download this
    my $poem = do { local $/; <DATA> };