Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-MetaCPAN-Client/examples/
Upload File :
Current File : //usr/share/doc/perl-MetaCPAN-Client/examples/module.pl

# examples/module.pl

use strict;
use warnings;
use DDP;

use MetaCPAN::Client;

my $module =
    MetaCPAN::Client->new->module('Moo');

my %output = (
    NAME        => $module->name,
    ABSTRACT    => $module->abstract,
    DESCRIPTION => $module->description,
    RELEASE     => $module->release,
    AUTHOR      => $module->author,
    VERSION     => $module->version,
);

p %output;