Questions about this topic? Sign up to ask in the talk tab.
Difference between revisions of "Perl/Basics/Boolean Logic/Bitwise Manipulations/NOT"
From NetSec
AlizaLorenzo (Talk | contribs) (Created page with "* '''~''' - The '''NOT''' operator {{code|text=<source lang="perl"> my $num = 10; $num = ~$num; print $num . "\n"; </source>}}") |
Chantal21I (Talk | contribs) m (moved Perl/Basics/Bitwise Manipulations/NOT to Perl/Basics/Boolean Logic/Bitwise Manipulations/NOT) |
(No difference)
|
Latest revision as of 01:28, 19 July 2012
- ~ - The NOT operator
my $num = 10; $num = ~$num; print $num . "\n"; |