Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    my $x = "foo";
    my $y = \$x;
    my %foo = ($y => "bar");
    for (keys %foo) { print $$_ };  # hoping to print 'foo'
    
  2. or download this
    my %foo = ($y => "bar");
    my %refs = ($y => $y);