The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.010;
use strict;
use IO::Callback::HTTP;

my $fh = IO::Callback::HTTP->new("<", "http://www.example.com/");

while (my $line = <$fh>)
{
	print $line;
}