Help for this page

Select Code to Download


  1. or download this
    sub matchrule {
      my ( $old, $highs, $word ) = @_;
    ...
      $tiles =~ s/$_// or return 0 for ( $newmask & $word ) =~ /\w/g;
      return 1;
    }
    
  2. or download this
    'hello' ^ 'world' => "\37\n\36\0\13"
    
  3. or download this
    my $newmask = ('hello' ^ 'world') =~ tr/\0/\xff/cr => "\377\377\377\0\
    +377"
    
  4. or download this
    ("\377\377\377\0\377" & '14222') => "142\0002"
    
  5. or download this
    "\377\377\377\0\377" & 'world' => "wor\0d"