Help for this page

Select Code to Download


  1. or download this
    token infix:sym<?? !!> ( --> Conditional) {
        '??'
    ...
        ]
        {*}                                                         #= ?? 
    +!!
    }
    
  2. or download this
    token infix:sym<?? !!> {
        '??'
        <EXPR(%conditional)>
        '!!'
    }
    
  3. or download this
    $a == 1 ?? $b = 2 !! $b = 3;
    
  4. or download this
    EXPR INFIX EXPR LEFT_DELIM STRING RIGHT_DELIM
    
  5. or download this
    for 1..10 { ... }