Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: a HASH ref while "strict refs" ERROR

by Paladin (Vicar)
on May 04, 2005 at 17:39 UTC ( [id://454068]=note: print w/replies, xml ) Need Help??


in reply to a HASH ref while "strict refs" ERROR

Another way to fix the problem if you do really want to use prototypes is to declare them before you use them (although I do agree with ikegami that it is probably better not to use them in the first place):

use strict; sub higherLevel(\@); sub showArray(\@); sub higherLevel(\@) { my(@arr) = @{(shift)}; showArray(@arr); } sub showArray(\@) { my(@arr) = @{(shift)}; my($temp); foreach $temp (@arr) { print "$temp\n"; } } my(@arr) = ("one","two","three"); higherLevel(@arr);

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://454068]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-19 01:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found