1 2 3 4 5 6 7 8 9
use IO::Handle; my $app = sub { my ($environ) = @_; my $io = IO::Handle->new(); return ['200', [], $io]; };