in reply to Re^2: Simple Query on Operators
in thread Simple Query on Operators

It's far from pointless. A great way of setting a default is: $foo ||= $hash{key};

That is, if the variable $foo does not already have a value, give it the value of $hash{key}.