in reply to Re^4: Alternate for "open"
in thread Alternate for "open"
I don't believe you - if you have use strict; use warnings when you also have:
my $total_size = total_size(\%val); print "\%val :",$total_size,$/; my $total_size = total_size(\%seen_cdr);
Your code is generating errors: "my" variable $total_size masks earlier declaration in same scope.
Either you don't have these switched on, or you've code that's generating errors every time it runs, and you're asking for someone to fix it for you.
|
|---|