foolishmortal has asked for the wisdom of the Perl Monks concerning the following question:
Is there any way to get perl to spit out the names of all builtin functions/vars?
I am thinking of something along these lines (which doesn't yield anything):
Thanks for any insight you can provide.for my $func (keys %main::CORE::GLOBAL::) { say $func; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Any way to enumerate CORE::GLOBAL members?
by jbt (Chaplain) on Sep 12, 2009 at 03:37 UTC | |
|
Re: Any way to enumerate CORE::GLOBAL members?
by ikegami (Patriarch) on Sep 12, 2009 at 03:38 UTC | |
|
Re: Any way to enumerate CORE::GLOBAL members?
by Khen1950fx (Canon) on Sep 12, 2009 at 04:24 UTC | |
|
Re: Any way to enumerate CORE::GLOBAL members?
by blokhead (Monsignor) on Sep 12, 2009 at 19:43 UTC |