Help for this page

Select Code to Download


  1. or download this
     $name = 'foo';
    $$name = 'bar';
    print "foo = $foo\n";
    __END__
    foo = bar
    
  2. or download this
    my $name = 'foo';
    {   
    ...
        $$name = 'bar';
    }
    print "foo = $main::foo\n";