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.

14 lines
235 B

  1. #include "mindustry.h"
  2. extern struct MindustryObject message1;
  3. void main(void) {
  4. double i = 0;
  5. while (i < 10) {
  6. if (i == 3) {
  7. print("is 3");
  8. } else {
  9. print("not 3");
  10. }
  11. }
  12. printd(i);
  13. print("\n");
  14. printflush(message1);
  15. }