Help for this page
# the equals operator happens first (($a, $b) = ('a', 'b')) || die; ... # SCALAR CONTEXT on ('a', 'b'), which # means it returns the right-most element ($a, $b) = ('a', 'b') || die;