```csharp // Csharp x >>= 1; y <<= 1; ``` becomes: ```lua -- Lua x = x > 1 -- should be >> y = y < 1 -- should be << ```