Unary Operators
Logical Operators
% C-style
result: int = !x
% Python style
result: int = not xBitwise Operators
% 1010 becomes 0101
result: int = ~xMemory Operations
ptr: *int = value.&
% Get value at ptr
result: int = ptr.*Increment/Decrement
Example Differences
Last updated