my @list=qw/malay manab milan anand/;
print @list."\n";
print"@list\n";
my output
4
malay manab milan anand
my querry
when i am changing the 1st print to "print @list" the output is coming as
malaymanabmilananand malay manab milan anand
then why in first instance only no of elements i.e 4 is getting printed in scalar context