But... has C or C++ got PASCAL calling conventions?... if so is and/or/xor and not 4 part of them?..
eg...
int b;
void setup()
{
b=10;
//c code
b = b ^ b;
//C Form
b = (b xor b);
// xor (used in pascal);
b = !b;
//pascal
b = not b;
b = b | b;
//pascal
b = b or b;
b = b & b;
//pascal
b = b and b;
}
void loop()
{
}
i don't have a vanilla c compiler to test this, but i find it odd, this compiles perfectly.
helps HEAPS to remember what's what for me now, and what to use. not trying to start a way, but are these operators intended? some kind of pascal/fortran influence going on there?