Module::New::Recipe::Help - shows help


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::Recipe::Help - shows help

USAGE

Top

From the shell/command line:

module_new help

lists all the commands.

module_new help <command>

shows pod for the <command>.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki@cpan.org>

COPYRIGHT AND LICENSE

Top


Module-New documentation Contained in the Module-New distribution.

package Module::New::Recipe::Help;

use strict;
use warnings;
use Module::New::Recipe;
use Module::New::Command::Help;

flow {
  help;
};

1;

__END__