Hi java coder here im converting a program into delphi for a project basicaly ive forgotten my whole delphi maths soo can anyone convert this into delphi
(l1 & 0x2 ^ 0xffffffff) == -3;
What is ^ for ?
It's an equality test.
(11 and $2 xor $FFFFFFFF) = -3
if I understand the syntax right