Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    show_foo
    
  2. or download this
      $n = 123;
      delete $::{n};
    ...
    
    #OUT
    123456
    
  3. or download this
      $n = 123;
      sub get_n { $n }
    ...
    123456
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    show_foo
    n
    Undefined subroutine & called at ...