RosettaCodeData/Task/Bitwise-operations/Beeswax/bitwise-operations-4.beeswax
2017-09-25 22:28:19 +02:00

2 lines
68 B
Text

A ROL B = A<<(B%64)+A>>>(64-B%64)
A ROR B = A>>>(B%64)+A<<(64-B%64)