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

package Consts3;
use strict;
const our $A => 100;
const our $B => 200;
const our @C => (1..5);
1;