Skip to content

Instantly share code, notes, and snippets.

@jberger
Last active August 29, 2015 14:19
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 jberger/f2c7057b05ac3e272e20 to your computer and use it in GitHub Desktop.
Save jberger/f2c7057b05ac3e272e20 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use v5.10;
sub pin_inc (&) {
local %INC = %INC;
local @INC = (sub { \'0;' }, @INC);
shift->();
}
pin_inc {
say eval { require Carp; 1 } ? "loaded" : "didn't";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment