Help for this page

Select Code to Download


  1. or download this
    print $$f;
    {
    ...
      print $$g;
    }
    print $$f;
    
  2. or download this
    print $$f;
    switch on the strict refs flag;
    ...
    print $$g;
    switch off the strict refs flag;
    print $$f;
    
  3. or download this
    print ( dereference $f allowing strings );
    print ( dereference $f not allowing strings );
    print ( dereference $g not allowing strings );
    print ( dereference $f allowing strings );
    
  4. or download this
    use MyModule; # this will be run once at compile time
    print "hello\n";
    ...
      use MyModule; # this will be run once at compile time
      print $_;
    }