The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
BEGIN {$^W = 1}
use strict;
use IO::All;

# Copy STDIN to a String File one paragraph at a time
my $stdin = io('-');
my $string_out = io('$');
while (my $paragraph = $stdin->getline('')) {
    $string_out->print($paragraph);
}

print ${$string_out->string_ref};