Help for this page

Select Code to Download


  1. or download this
         import  There is no builtin "import" function.  It is just
                 an ordinary method (subroutine) defined (or
    ...
                 "import" method for the package used.  See also the
                 use entry elsewhere in this document, the perlmod
                 manpage, and the Exporter manpage.
    
  2. or download this
    package packg;
    1;
    
  3. or download this
    BEGIN { require packg; import packg; }
    
    print "ok\n";