Help for this page
# With ternary my $x = exists $hash{key} ... else { $x = 'default'; }
# With ternary my $x = $x > 5 ... $x++; }
my $x = $y > 5 ? ($y = 0) : ($y = 1);