Help for this page
my @foo = 1..4; local *foo = ['a'..'d']; print @foo; # 1234
my @foo = 1..4; our @foo = 'a'..'d'; print @foo; # abcd