You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
241 B

/*
* Bit op tests.
*/
/* FIXME: incomplete */
/* FIXME: precedence tests, associativity tests */
/* FIXME: ranges, coercion, etc */
/*===
64
===*/
print(255 & 64);
/*===
192
===*/
print(128 | 64);
/*===
191
===*/
print(255 ^ 64);