Name: Anonymous 2009-04-05 15:57
I am currently learning to program (Perl) and I've come across this:
What does
$variable ||= 'stuff';What does
||= mean?
$variable ||= 'stuff';||= mean?
$variable = $variable || 'stuff';