code.h 133 B

12345678910111213
  1. // Some code for the middle of a program
  2. x = x;
  3. if (x == 0) {
  4. x = 1;
  5. } else {
  6. x = 2;
  7. }
  8. if (true) {
  9. x = x;
  10. } else {
  11. x = x;
  12. }