Help for this page

Select Code to Download


  1. or download this
    my $STATUS1 = "Running";
    my $STATUS2 = "Sunning";
    
    print $STATUS1 & $STATUS2, "\n";
    
  2. or download this
    if (lc($STATUS1) eq lc($STATUS2)  and lc($STATUS1) eq 'running') {...
    }