RosettaCodeData/Task/Bitwise-operations/Crystal/bitwise-operations.cr
2026-04-30 12:34:36 -04:00

9 lines
152 B
Crystal

def operations (x, y)
p! x, y,
x & y, x | y, x ^ y,
~x,
x << y, x >> y,
x.rotate_left(y), x.rotate_right(y)
end
operations 10, 2