my $foo := 42; # declares $foo at compile time, binds it to immutable 42 at run-time BEGIN say $foo; # (Any) $foo = 99; # Cannot assign to an immutable value