Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Boolean Logic/Bitwise Manipulations/OR
From NetSec
Revision as of 01:28, 19 July 2012 by Chantal21I (Talk | contribs) (moved Perl/Basics/Bitwise Manipulations/OR to Perl/Basics/Boolean Logic/Bitwise Manipulations/OR)
- | - The OR operator
my $num = 10; $num = $num | 25; print $num . "\n"; |