Help for this page

Select Code to Download


  1. or download this
    sub merge {
        my %hash;
    ...
    for ( qw( j a p h ) ) {
        print lookup( $_, @ary2) ? "$_ Found\n" : "$_ Not found\n";
    }
    
  2. or download this
    sub oops {
       return FALSE;
    }
    print "Oops 'FALSE' is true in Perl" if &oops;