in reply to Re: Assignment to a value only if it is definedin thread Assignment to a value only if it is defined
not quite — $foo //= $bar would test if $foo is defined, not $bar (it's equivalent to $foo = $bar unless defined $foo).