Help for this page

Select Code to Download


  1. or download this
    use Test::More tests => 3;
    BEGIN {
    ...
    diag( "Testing Acme::HelloWorld $Acme::HelloWorld::VERSION, Perl $], $
    +^X" );
    can_ok( 'Acme::HelloWorld', 'greet' );
    is( greet(), 'Hello, world!', 'greet() greets the world' );
    
  2. or download this
    package Acme::HelloWorld;
    
    ...
    =cut
    
    1; # End of Acme::HelloWorld
    
  3. or download this
    perl Makefile.PL
    make
    make test
    
  4. or download this
    perl Makefile.PL
    make
    ...
    cp Acme-HelloWorld-0.01/META.json ./META.json
    cp Acme-HelloWorld-0.10/META.yml  ./META.yml
    rm -rf Acme-HelloWorld-0.01/