Help for this page

Select Code to Download


  1. or download this
    my $junk;
    print 1 + ($junk || 0);
    
  2. or download this
    my $junk = 11;
    print 1 + ($junk || 0);
    
  3. or download this
    my $junk = 0;
    print 1 + ($junk || 15);