in reply to How do I check all the variables, subroutines etc in a Perl Module?
use strict; use warnings; use diagnostics; use HTTP::Tiny; while ( my($key, $value) = each %HTTP::Tiny::) { print "Key: $key\tValue: $value\n"; }
(This was my 3000th writeup on PerlMonks.)
|
|---|