AFS
view release on metacpan or search on metacpan
#
# To find out the type of Perl you are using
#
use warnings;
use strict;
use Config;
if ($Config{usethreads}) {
print "Your Perl is \'Threaded Perl\'\n";
}
else {
print "Your Perl is \'Non-Threaded Perl\'\n";
}
( run in 1.061 second using v1.01-cache-2.11-cpan-df04353d9ac )