Skip to content

Instantly share code, notes, and snippets.

@preaction
Created January 16, 2015 05:22
Show Gist options
  • Save preaction/78e7094746d242111fc6 to your computer and use it in GitHub Desktop.
Save preaction/78e7094746d242111fc6 to your computer and use it in GitHub Desktop.
Pythonic packages/classes
package My::Pythonic::Package {
use My::Pythonic qw( Base );
class MyClass extends Base {
}
}
# Now in package main again
use My::Pythonic::Package qw( MyClass );
my $obj = MyClass->new;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment