# New Ticket Created by  Cosimo Streppone 
# Please include the string:  [perl #76926]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76926 >


The old expression:

        $condition ?? $x :: $y

is now:

        $condition ?? $x !! $y

except it took me a long time to find out.
The error message if you write

        say $condition ?? "True" :: "False";

is:

        ===SORRY!===
        Confused at line 9, near "say $condi"

which is less than awesome.

-- 
Cosimo

Reply via email to