I'm a new perl user. I was trying to print an array by using print @array
and print "@array". Is it supposed to output the same thing? I got the
different output. EX: @array=qw/v1 v2 v3/, the output for print @array will
be v1v2v3 while it will be v1 v2 v3 in the other case. The difference is one
is seperated by whitespace while the other is not. Could anyone explain why
this happen? Thanks alot.

Cid

Reply via email to