See Original text in context
The defined-or operator or infix // returns the first defined operand, or else the last operand. Short-circuits.
say Any // 0 // 42; # OUTPUT: «0»