Thread: Square root
View Single Post
  #12  
Old 12-01-2006, 04:36 PM
Chompy Chompy is offline
¯\(º_o)/¯
Chompy's Avatar
Join Date: Sep 2006
Location: Norway
Posts: 2,815
Chompy is just really niceChompy is just really niceChompy is just really nice
Send a message via MSN to Chompy
Quote:
Originally Posted by jake13jake View Post
*wants his xor operator back* :-(

I'd even be willing to write the program that would convert everyone's nw files and scripts from

a^b to pow(a,b),
a^=b to a=pow(a,b)
and,
a xor b to a^b
How I use Xor, is this >_>

PHP Code:
function onCreated() {
 
var1 "foo";
 
var2 "bar";
 echo(
var1 xor var2 0); // would return true
}
/*
   True  = Not alike
   False = Alike
*/ 
__________________
Reply With Quote