Hi All, Does anyone know of a paper out in web land showing how to do bitwise operations? DuckDuckGo give me tons of hits for Perl 5.
Trying to AND 0010 0000 with 0001 0000 $ p6 'my $v = 32 & 16; say $v;' all(32, 16) should give me 0000 0000. I have a nice paper on Perl 5. I don't think they the same? $ perl -E 'my $v = 32 & 16; say $v;' 0 $ perl -E 'my $v = 32 | 16; say $v;' 48 Many thanks, -T