Skip to content

Instantly share code, notes, and snippets.

@tokuhirom
Created October 12, 2015 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokuhirom/3083ec8e94e293bc5a3e to your computer and use it in GitHub Desktop.
Save tokuhirom/3083ec8e94e293bc5a3e to your computer and use it in GitHub Desktop.
IO::Path.e cache is too strong
use v6;
use Test;
unlink 'foobar.txt';
my $fh = open 'foobar.txt', :rw;
$fh.print('foo');
ok $fh.path.e;
done-testing;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment