in reply to Re: saving the file uploaded...
in thread saving the file uploaded...
Update: Perl is loosely typed. Assignments tend not to care about the previous contents of the variable. That's all.my $scalar = ''; $scalar = {}; print ref $scalar, "\n"; $scalar = []; print ref $scalar, "\n"; use IO::File; $scalar = IO::File->new(); print ref $scalar, "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: saving the file uploaded...
by screamingeagle (Curate) on Feb 28, 2002 at 19:44 UTC |