Oxygen Basic
Programming => Bugs & Feature Requests => Topic started by: Charles Pegge on June 21, 2013, 06:15:45 AM
-
Operator alternative to assembly code instructions.
Useful for randomisers, noise functions, and hash generators:
<<< rotate bits left
>>> rotate bits right
sys x=0x80000000
sys y=0x5
print x<<<y 'result 0x10 (16)
-
That is going to be helpful for the O2 MD5 code challenge.
Nice work Charles!