Help for this page
my $sixth; if (defined $a) { ... else { $sixth = 3; }
my $sixth = defined $a ? $a : 3; # or this my $sixth = $a // 3;