Questions about this topic? Sign up to ask in the talk tab.

Difference between revisions of "Perl/Basics/Boolean Logic/Bitwise Manipulations/AND"

From NetSec
Jump to: navigation, search
(Created page with "* '''&''' - The '''AND''' operator. {{code|text=<source lang="perl"> my $num = 10; $num = $num & 25; print $num . "\n"; </source>}}")
 
 
(No difference)

Latest revision as of 02:28, 19 July 2012

  • & - The AND operator.
 
my $num = 10;
$num = $num & 25;
print $num . "\n";