I am trying to figure out a way to print the list of subroutines that are loaded via use and require of the currently running script. Is this possible?
use strict;
use Win32;
require '/mysubs.pl';
# print a list of subroutines that are currently loaded
???