Help for this page

Select Code to Download


  1. or download this
    $c //= $d;
    
  2. or download this
    $c = defined $c ? $c : $d;
    
  3. or download this
    $c = $d unless defined $c;
    
  4. or download this
     $regex = qr# (\d) (??{ my $c = $1 unless defined $c; ++$c })+ #x;