in reply to Re^7: what would you like to see in perl5.12?
in thread what would you like to see in perl5.12?

In Perl 6 you can put the type either before or after, taking end-weight into account. So
my Int @array;
is equivalent to
my @array of Int;
which in turn is really short for
my @array is Array of Int;
so it's easy to see how you can end up with cool things like
my @array of Hash of Tree of Int;