Tell me what you want, What you really, really want.

Moderator: Mmiscool

User avatar
By marcomart
#44552 Hello.

Is it possible to add to the interpreter byte wise functions like AND, OR, EXOR?
I think will be very help full.

With regards.
Marco.
User avatar
By cicciocb
#44624 Hi,
the bitwise functions are already present into the beta version.
You can do and, or, not
Examples :
let a = 255 and 15 -> 15
print 240 or 15 -> 255

The xor will be probably in the next version.