in reply to I think this would be a static in Perl 6?
in thread Static variables (and also Perl 6)

Yep. I believe that that works exactly as tilly suggested. Way cool. Wish I'd thought of it. Here's an interesting variant:
my ($static1, $static2) := *BEGIN{["val1","val2"]};
(Note the implicit enreferencing of the array reference returned by the BEGIN block, which happens because the "flattening *" expects an array.)