Help for this page

Select Code to Download


  1. or download this
    use MyTest;
    print "Once-lexical variable holds $lexvar\n";
    
  2. or download this
    package MyTest;
    
    my $lexvar = 7;
    ...
      # typeglob aliasing.
      *{$pkg_to_export_to . '::lexvar'} = \$lexvar;
    }