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
16 lines
188 B
#include "c2logic/builtins.h"
|
|
extern struct MindustryObject message1;
|
|
void main(void) {
|
|
goto b;
|
|
a:
|
|
goto e;
|
|
b:
|
|
goto d;
|
|
c:
|
|
goto a;
|
|
d:
|
|
goto c;
|
|
e:
|
|
print("end");
|
|
printflush(message1);
|
|
}
|