in reply to Re: insert into a hash
in thread insert into a hash
The use of warnings and strictures is a very good idea.>perl -wMstrict -le "my @ra = qw(a,b,c); print scalar @ra; print qq{'@ra'}; " Possible attempt to separate words with commas at -e line 1. Possible attempt to separate words with commas at -e line 1. 1 'a,b,c'
|
|---|