Help for this page

Select Code to Download


  1. or download this
        use Zowie qw( :phasers :masers :tasers !:water_pistols );
    
  2. or download this
        use CGI qw( :all );
    
  3. or download this
        use CGI qw( :html2 :html3 :netscape :form :cgi :internal );
    
  4. or download this
    package LISConst;
    use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
    ...
    
        all => [qw( ? ? ? ? )],
    );
    
  5. or download this
        all => [qw( :hdr_lens :phyhdr_flags :lr_types )],
    
  6. or download this
        { # Expand tag names into referenced name sets
        my %seen;    
    ...
            grep { !$seen{$_}++ } 
            @{$EXPORT_TAGS{$_}} foreach keys %EXPORT_TAGS;
        }