RosettaCodeData/Task/Bitwise-operations/Crystal/bitwise-operations.cr

10 lines
152 B
Crystal
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
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