Help for this page
my $junk; print 1+$junk;
print 1+($junk ? $junk : 0);
$junk = 11; print 1+($junk ? $junk : 0);
$junk=0; print 1+($junk ? $junk : 15);