Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Boolean Logic/Bitwise Manipulations/XOR
From NetSec
Revision as of 02:54, 16 July 2012 by AlizaLorenzo (Talk | contribs) (Created page with "* '''^''' - The '''XOR''' (exclusive or) operator {{code|text=<source lang="perl"> my $num = 10; $num = $num ^ 25; print $num . "\n"; </source>}}")
- ^ - The XOR (exclusive or) operator
my $num = 10; $num = $num ^ 25; print $num . "\n"; |