http://qs321.pair.com?node_id=556640


in reply to Re: IO::All is sliced bread
in thread IO::All is sliced bread

I thought this example:
use IO::All; io->catdir('my','dir','my_file.txt')->backwards > io->catdir('my','dir','reversed.txt');
was wrong until i read the IO::All documentation and found out that the ">" operator is overloaded by IO::All. You might write it more suggestively by saying:
io->catdir('my','dir','my_file.txt')->backwards > io->catdir('my','dir +','reversed.txt');