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