V
Vito Corleone
Hi,
If I write:
return $x || undef();
Which will be executed first? Is it:
(return $x) || undef();
or
return ($x || undef());
Thank you.
Vito
If I write:
return $x || undef();
Which will be executed first? Is it:
(return $x) || undef();
or
return ($x || undef());
Thank you.
Vito