Help for this page

Select Code to Download


  1. or download this
    # 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;