Help for this page
use strict; use warnings; ... my @a = (10, 20, 30, 40, 50, 60, 70); print "F: ", scalar @a, "\n"; # = 7, the + length of @a
Useless use of a constant (10) in void context at D:\stuart\play\temp\ +pp.pl line 4. Useless use of a constant (20) in void context at D:\stuart\play\temp\ +pp.pl line 4. ... D: 70 E: 70 F: 7