You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
352 B

5 years ago
5 years ago
  1. #include "../include/mindustry.h"
  2. extern struct MindustryObject message1;
  3. void main(void) {
  4. int i = 0;
  5. while (i < 10) {
  6. if (i % 2 == 1) {
  7. continue;
  8. }
  9. printd(i);
  10. i++;
  11. if (i == 4) {
  12. break;
  13. }
  14. }
  15. print("\n");
  16. i = 0;
  17. printd(i);
  18. if (i == 3) {
  19. print(" is 3");
  20. } else {
  21. print(" is not 3");
  22. }
  23. print("\n");
  24. printflush(message1);
  25. }