fun things to do with a C program:
- make your program reliant on whether the compiler interprets `a+++b;` as `(a++) + (b);` or `(a) + (++b);`
- #define int uint8
- #define if while
- wherever possible, sprinkle in bits of assembly, even if it doesn't do anything useful
don't actually do these