If I assign a variable to a function, say,
$x = f($y);
and then f happens not to return anything, does $x just remain unset? Or is
this illegal?
$x = f($y);
and then f happens not to return anything, does $x just remain unset? Or is
this illegal?
Comment