my $string = "Hello."; my $string_ref = \$string; $string = "Bacon!"; print $$string_ref;