Re: Listing Perl built in variables

2003-12-29 Thread R. Joseph Newton
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

RE: Listing Perl built in variables

2003-12-29 Thread Dan Muey
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

Re: Listing Perl built in variables

2003-12-29 Thread Jenda Krynicky
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