in reply to Re: What is wrong with variable?
in thread What is wrong with variable?
What is this supposed to do? Initialize both $last and $now to '0'? Guess again...my $last, $now)= '0';
works better ;-)my $last = my $now = '0';
btw, what is this supposed to do:
The last two lines will never get executed... never! BTW: why do you use backticks in your system() sub? It's either `$1`, or do{ open(my $cmdh, '-|', $1); <$cmdh> } or system($1)... but combining two of them is probably not what you want to do...system(`$1`); return $now; print "I done $1"; last
3 lines... does the same thing ;)`$1`; print qq{I've done $1}; return $now
cya!
to ask a question is a moment of shame
to remain ignorant is a lifelong shame
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: What is wrong with variable?
by w3b (Beadle) on Mar 19, 2006 at 09:33 UTC |