Help for this page

Select Code to Download


  1. or download this
    our(@ISA, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD) = ();
    
  2. or download this
    use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK $AUTOLOAD);
    
  3. or download this
    no strict;
    (@ISA, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD) = ();
    # You need to do all of your work with these variables here
    # Its best not to use this method.
    use strict;