Skip to content

Instantly share code, notes, and snippets.

@riywo
Created January 31, 2013 01:14
Show Gist options
  • Save riywo/4679006 to your computer and use it in GitHub Desktop.
Save riywo/4679006 to your computer and use it in GitHub Desktop.
use parent in the same script in Perl
use strict;
use warnings;
use B;
B->new();
#-------------------------------
package A;
package B;
use parent qw/A/; # fail
use parent qw/-norequire A/ # true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment