http://qs321.pair.com?node_id=525156


in reply to Re: the basic datatypes, three
in thread the basic datatypes, three

Why do we need to key scalar(@list) when only @list would also work?
for e.g.
use strict; my @abc= ('a','b','c','d'); my $x= @abc; my $y = scalar(@abc); print $x."#".$y;
Here $x & $y both return 4.