The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package MyTest;
use parent 'Panda::Export';
use 5.012;

my %hash = map { ("CONST$_" => $_) } 1..10;
Panda::Export->import(\%hash);

sub pizda {state $a = 10; return $a++; }

1;