in reply to Re: unless versus if ( ! ) inside a subroutine
in thread unless versus if ( ! ) inside a subroutine
toif ( ! $v ) { # ...
It still returns nothing. So it appears with 'if', it does not return the value evaluated inside the conditional. But why?if ( $v ) { # ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: unless versus if ( ! ) inside a subroutine
by Anonymous Monk on Jan 15, 2008 at 17:06 UTC | |
by Wheeler (Acolyte) on Jan 15, 2008 at 18:20 UTC | |
|