From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
12345678910111213141516171819 package Consts1;use strict;use warnings;use Const::Exporter tag_a => [ 'foo' => 1, '$bar' => 2, '@baz' => [qw/ a b c /], '%bo' => { a => 1 }, ], tag_b => [ '$zoo' => 3, ];1;
package
Consts1;
use
strict;
warnings;
Const::Exporter
tag_a
=> [
'foo'
=> 1,
'$bar'
=> 2,
'@baz'
qw/ a b c /
],
'%bo'
=> {
a
=> 1 },
tag_b
'$zoo'
=> 3,
];
1;