Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

RE: luke_repwalker.pl

by Dogg (Scribe)
on Aug 10, 2000 at 23:15 UTC ( [id://27357]=note: print w/replies, xml ) Need Help??


in reply to luke_repwalker.pl

I tried to run this and I got:
syntax error at luke_repwalker.pl line 165, near "} foreach " syntax error at luke_repwalker.pl line 263, near ") foreach " syntax error at luke_repwalker.pl line 263, near "})"
The lines look fine to me, but I'm still a basic perl user:
165 : $hnewreps->{$_}->{'last'} = $holdreps->{$_}->{'rep'} foreach (@c +hangednodes); 263 : $linelen = max ($linelen, length ($nodes->{$_}->{'title'})) fore +ach (@{$_->{'array'}});
I thought maybe my older version of Perl (5.00404) might not be able to handle the foreach after the statement. Maybe? Is there some other problem I might have? Thanks for the help. Greg

Replies are listed 'Best First'.
RE: RE: luke_repwalker.pl
by btrott (Parson) on Aug 10, 2000 at 23:22 UTC
    You said:
    > I thought maybe my older version of Perl > (5.00404) might not be able to handle the > foreach after the statement. Maybe?
    You've got it. That syntax was introduced later.

    Just change them to

    foreach VAR (LIST) BLOCK
    format.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (6)
As of 2024-04-23 12:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found