Jenda Krynicky wrote:
> From: "Dan Muey" <[EMAIL PROTECTED]>
> > I was curious if there is a way to simply list all of perl's built in
> > variables and their values.
>
> You can list all variables in the main package:
> (Beware! Ugly code follows!)
The output could be a bit prettier, though, wit
From: "Dan Muey" <[EMAIL PROTECTED]>
> > I was curious if there is a way to simply list all of
> perl's built in
> > variables and their values.
>
> You can list all variables in the main package:
> (Beware! Ugly code follows!)
>
> #!perl
> use Data::Dumper;
> $Data::Dumper::Indent = 0;
> $Da
From: "Dan Muey" <[EMAIL PROTECTED]>
> I was curious if there is a way to simply list all of perl's built in
> variables and their values.
You can list all variables in the main package:
(Beware! Ugly code follows!)
#!perl
use Data::Dumper;
$Data::Dumper::Indent = 0;
$Data::Dumper::Useqq = 1;
$Da