While trying to use say for debugging, I ran across an oddity. While I can:
say "[EMAIL PROTECTED]";
and
say @some_array;
this doesn't work:
say "@some_array";
Even stranger:
class SomeClass {
has $.scalar_attr;
has @.array_attr;
method trial () {
say "$.scalar_attr @.array_attr";
}
}
Calling trial yields the correct value of the scalar, but the literal
'@.array_attr' instead of its value. Oddly, substituting $.array_attr yields
the value with no complaint that there is no such scalar.
Am I missing something, or should I submit a test?
If the later, what folder should I put it in?
Phil