Help for this page

Select Code to Download


  1. or download this
    my $sixth;
    if (defined $a) {
    ...
    else {
        $sixth = 3;
    }
    
  2. or download this
    my $sixth = defined $a ? $a : 3;
    # or this
    my $sixth = $a // 3;