You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~ is a bitwise NOT, not a boolean toggle. Since @even is BIT, ~1 becomes -2 and ~0 becomes -1, so the logic breaks after the first loop. It should toggle between 1 and 0, not invert all bits.