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.

21 lines
318 B

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