Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
printf "%d\n", 4 ^ 3; ## bitwise XOR (100 ^ 011 = 111)
if(4 xor 3) {
print "true\n";
} else {
print "false\n"; ## 4 is true, 3 is true, hence true XOR true is false
}
operation high low
-------------------------
'and' && and
'or' || or
'xor' -none- xor