Help for this page

Select Code to Download


  1. or download this
    use a qw( $x $z );
    
  2. or download this
    "$z" is not exported by the a module
    Can't continue after import errors at -e line 1
    
  3. or download this
    package a;
    require Exporter;
    ...
    our @EXPORT_OK= qw( $x );
    our $x= 'x';
    1;