Help for this page
#use strict; #uncomment to kill the code my $s = 'foo'; $$s = 'bar'; ... Output: $foo = bar $$s = baz
if ($#-) { no strict 'refs'; print "$#+ matches found", $/; ... print "$haystack contains ${$_} at $-[$_]", $/; } }