C言語のポインタと同じく、配列などのリファレンスから要素の値を参照する場合はアロー演算子が使える。
添字の[]の前や、{}の前に->を置くことができる。
$ vi arrow_operator.pl $ perl arrow_operator.pl 3 3 value2 value2 $
このように値を取得できる。
Sample/perl/arrow_operator/arrow_operator/src/arrow_operator at master · bg1bgst333/Sample · GitHub