Appearance
Source Code
Checks for x & 1 which is unoptimized in cairo and could be replaced by x % 1.
x & 1
x % 1
fn main() { let _a = 200_u32 & 1; }