Help for this page

Select Code to Download


  1. or download this
    use strict; use warnings;
    
    if('test' eq 0){  print "in if"   }
    ...
    __END__
    
    prints: in else again in else
    
  2. or download this
    if('0' eq 0)  {  print "in if"   }
    else          {  print "in else" }
    ...
    __END__
    
    prints: in if