I mostly can follow the syntax to 'drill down/slice' into an array with multiple dimensions (and flattening) on the docs page. A very cool feature. For example given:
my @a=[[1,2,3],
[4,5,6],
[7,8,9]];
I can select column 2 of the above using:
say @a[0,1,2;1]; #This output (2,5,8)
Is it possible to extract the diagonal (1,5,9) in a similar compact syntax?