- or download this
print $$f;
{
...
print $$g;
}
print $$f;
- or download this
print $$f;
switch on the strict refs flag;
...
print $$g;
switch off the strict refs flag;
print $$f;
- 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 );
- 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 $_;
}