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.

18 lines
277 B

  1. #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. }
  9. print("\n");
  10. i = 0;
  11. printd(i);
  12. if (i == 3) {
  13. print(" is 3");
  14. } else {
  15. print(" is not 3");
  16. }
  17. print("\n");
  18. printflush(message1);
  19. }