in reply to forcing array to scalar context in string interpolation?

my @aa = qw/a b c d/; print scalar @aa, "\n"; print "@{[scalar(@aa)]}\n";
Boris