$$

何が出力されるか分かる?

$hoge = "yone";
$yone = "hello";

print $$hoge;

$$hoge -> ${$hoge} -> ${"yone"} -> $yone -> "hello"
と展開されます.