-->
Page 1 of 1

Byte wise functions.

PostPosted: Wed Mar 30, 2016 7:55 pm
by marcomart
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.

Re: Byte wise functions.

PostPosted: Fri Apr 01, 2016 6:47 am
by cicciocb
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.