- or download this
use warnings;
use strict;
...
sub create_first {
print "first!\n";
}
- or download this
$VAR1 = {
'first' => sub { "DUMMY" }
};
first!
- or download this
$dispatch{_create_first}->();
- or download this
use warnings;
use strict;
...
sub create_first {
print "first!\n";
}
- or download this
$VAR1 = {
'create_first' => sub { "DUMMY" }
};
first!