Help for this page

Select Code to Download


  1. or download this
    #package file
    package myKeywords;
    
    @list_of_words = qw(my list of words);
    
  2. or download this
    #User script
    use myKeywords;
    
    map {print $_ ."\n"} @myKeywords::list_of_words;
    
  3. or download this
        use ExtUtils::MakeMaker;
        WriteMakefile('NAME'      => 'myKeywords');
    
  4. or download this
    perl makefile.pl
    make
    make test
    
  5. or download this
    make install