Help for this page
sub foo { return qw(a b c d) } ( foo() )[1,3]; ... # And effectively the same as @a = foo(); @a[1,3];