Blob


1 #!/usr/bin/perl
3 # Install the local::lib module and use it when you install Module::CoreList
4 # (or another module if you like). Write a program that reports the name and
5 # first release date for all the modules in Perl v5.14.2. Read the
6 # documentation for local::lib to see if it has special installation
7 # instructions.
9 use v5.24;
10 use warnings;
11 use strict;
12 use utf8;
13 use local::lib;
14 use Module::CoreList;
16 my $modules = Module::CoreList->find_version("5.014002");
17 foreach (keys %$modules) {
18 print $_;
19 printf(" => v%s", $modules->{$_}) if defined($modules->{$_});
20 print "\n";
21 }