Help for this page

Select Code to Download


  1. or download this
    my $x = \*foo;
    undef *$x;
    
  2. or download this
    my $x = 'foo';
    {
       no strict 'refs';
       undef *$x;
    }
    
  3. or download this
    my $x = do { no strict 'refs'; \*{'foo'} };
    undef *$x;