Help for this page

Select Code to Download


  1. or download this
    print exists $search{$_}   ?
              "$_ : Found $_\n"    :
              "$_ : Not Found $_\n";
    
  2. or download this
    if (exists $search{$_})
    {
    ...
    {
        print "$_ : Not Found $_\n";
    }