$var2 = "foo"; $var1 = \$var2; $var2 = "bar"; print $$var1; # Prints "bar", not "foo".