Oxygen Basic

Programming => Bugs & Feature Requests => Topic started by: Charles Pegge on June 21, 2013, 06:15:45 AM

Title: Proposed symbols for bit rotation
Post 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)
Title: Re: Proposed symbols for bit rotation
Post by: JRS on June 21, 2013, 07:02:57 AM
That is going to be helpful for the O2 MD5 code challenge.

Nice work Charles!