Help for this page

Select Code to Download


  1. or download this
    if ($hash{$var1} == $var2) {
      print "You are in\n";
    ...
    else {
      print "Bad, monkay, bad!\n";
    }
    
  2. or download this
    if (defined($var1)) {
     ...
    }
    
  3. or download this
    if (defined($hash{$var1}) && length($hash{$var1}) > 0) {
     ...
    }