RosettaCodeData/Task/Bitwise-operations/Beeswax/bitwise-operations-4.beeswax
2023-07-01 13:44:08 -04: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)