Help for this page

Select Code to Download


  1. or download this
    my $value_ref = do { no strict 'refs'; \${caller().'::value'} };
    print $$value_ref, "\n";
    
  2. or download this
    {
       package Module;
    ...
    
    our $value = "Hello World";
    Module::f();