in reply to Re^2: NET::SMTP on 64 bit
in thread NET::SMTP on 64 bit
Hello again bdegan2,
You can use the module Module::CoreList to find all the information that you are looking for.
Sample of code:
#!/usr/bin/perl use strict; use warnings; use feature 'say'; use Module::CoreList; if (Module::CoreList::is_core('Net::SMTP')) { say "Net::SMTP is a core module"; say Module::CoreList->first_release('Net::SMTP'); } __END__ $ perl test.pl Net::SMTP is a core module 5.007003
You are not helping us to help you, if you are not answering the questions that we ask you but you are asking more questions.
Hope this helps, BR.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: NET::SMTP on 64 bit
by bdegan2 (Sexton) on Oct 12, 2017 at 22:18 UTC | |
|
Re^4: NET::SMTP on 64 bit
by bdegan2 (Sexton) on Oct 16, 2017 at 19:03 UTC | |
by afoken (Chancellor) on Oct 17, 2017 at 05:22 UTC | |
by bdegan2 (Sexton) on Oct 17, 2017 at 18:01 UTC | |
by kcott (Archbishop) on Oct 18, 2017 at 07:36 UTC | |
|
Re^4: NET::SMTP on 64 bit
by bdegan2 (Sexton) on Oct 13, 2017 at 18:41 UTC | |
by poj (Abbot) on Oct 13, 2017 at 19:23 UTC | |
by bdegan2 (Sexton) on Oct 13, 2017 at 21:40 UTC | |
by hippo (Archbishop) on Oct 13, 2017 at 22:03 UTC | |
by bdegan2 (Sexton) on Oct 16, 2017 at 15:31 UTC | |
|