From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package Consts1;
use strict;
tag_a => [
'foo' => 1,
'$bar' => 2,
'@baz' => [qw/ a b c /],
'%bo' => { a => 1 },
],
tag_b => [
'$zoo' => 3,
];
1;