Re: Use of Uninitialized References

2001-07-16 Thread Jeff 'japhy' Pinyan
On Jul 16, Eric Chun said: > #!/usr/local/perl -w > my ($summary_data); > $summary_data->{'express'} = "blahblahblah\n"; > print $summary_data->{'express'}; >Notice that $summary_data is not initialized, so when used as a reference, >it will point to the memory address 0x

Re: Use of Uninitialized References

2001-07-16 Thread Paul
--- Eric Chun <[EMAIL PROTECTED]> wrote: > I've just seen a strange thing. I made up a simple perl program: > #!/usr/local/perl -w > my ($summary_data); > $summary_data->{'express'} = "blahblahblah\n"; > print $summary_data->{'express'}; > Notice that $summary_data is not

Use of Uninitialized References

2001-07-16 Thread Eric Chun
I've just seen a strange thing. I made up a simple perl program: #!/usr/local/perl -w my ($summary_data); $summary_data->{'express'} = "blahblahblah\n"; print $summary_data->{'express'}; Notice that $summary_data is not initialized, so when used as a reference, it