G
George Mpouras
I want to delete an array completly.
use strict; use warnings; my
@array=qw/a b c/;
@array=();
undef @array;
print @array;
I expect a warning like "Global symbol "@array" requires explicit..." but it
did not compaint
use strict; use warnings; my
@array=qw/a b c/;
@array=();
undef @array;
print @array;
I expect a warning like "Global symbol "@array" requires explicit..." but it
did not compaint