NAME

Acme::Capture - Use Capture::Tiny with a different _relayer() method

SYNOPSIS

use Acme::Capture qw(capture_merged);

my $merged = capture_merged {
    print {*STDERR} "This is STDERR\n";
    print "==>[ABCDEFG]\n";
    system('dir C:\\');
    system('uvwxyz');
};

print "---------------------------\n";
print "merged = $merged\n";
print "\n";

AUTHOR

Klaus Eichner, January 2016

COPYRIGHT AND LICENSE

Copyright (C) 2016 by Klaus Eichner

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.