Help for this page

Select Code to Download


  1. or download this
    > my $junk;
    > print 1+$junk;
    
  2. or download this
    > print 1+($junk ? $junk : 0);
    
  3. or download this
    print 1+ ( $junk ? 0 : $junk);