Give the cat a number, and she will tell you whether the number is even or odd. Repeats forever.
This project uses the mod block to determine whether the number is even or odd. If number mod 2 = 0, then the number is even. Else if number mod 2 = 1, then the number is odd.