2007-02-24 範囲演算子 Perl 範囲演算子の使い方ではまった。 my @indices = (0, 1); ### OK (1..2)[@indices]; @{[1..2]}[@indices]; ### NG [1..2]->[@indices];