シンボリックリファレンス

シンボリックリファレンスは、非常に不思議な機能である。

The Perl5 Manual - シンボリックリファレンス
シンボリックリファレンス

単なる文字列の代入が、その文字列の名の付いた変数へのリファレンスの代入にもなるという2つの意味を持つ。
どちらを出力しても、

$ vi reference.pl
$ perl reference.pl
123
variable
$

どちらの機能も維持している。

Sample/perl/reference/symbolic_reference/src/reference at master · bg1bgst333/Sample · GitHub