Hi All, What is the official Perl syntaxland name of the following line?
multi method words(Str:D $input: $limit = Inf --> Positional)
What is the official Perl syntaxland name of the [] subroutine?
$ p6 'my @x=[1,2,3,4]; @x[3,2,1,0].say;'
(4 3 2 1)
$ p6 'my @x=[1,2,3,4]; @x[2,3,0,1].say;'
(3 4 1 2)
Many thanks,
-T
