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.

16 lines
188 B

5 years ago
5 years ago
  1. #include "c2logic/builtins.h"
  2. extern struct MindustryObject message1;
  3. void main(void) {
  4. goto b;
  5. a:
  6. goto e;
  7. b:
  8. goto d;
  9. c:
  10. goto a;
  11. d:
  12. goto c;
  13. e:
  14. print("end");
  15. printflush(message1);
  16. }