Back | Go to board

Board:

/g/

Thread:

bool is_even(int x)
{
while (x > 0) {
x -= 2;
}
return x == 0;
}