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.
29 lines
417 B
29 lines
417 B
#include "../include/mindustry.h"
|
|
extern struct MindustryObject message1;
|
|
void main(void) {
|
|
int i = 0;
|
|
for (i = 5; i < 9; i++) {
|
|
printd(i);
|
|
}
|
|
do {
|
|
if (i % 2 == 1) {
|
|
continue;
|
|
}
|
|
printd(i);
|
|
++i;
|
|
if (i == 8) {
|
|
break;
|
|
}
|
|
} while (!(i >= 10));
|
|
print("\n");
|
|
i = 0;
|
|
printd(i);
|
|
if (i == 3) {
|
|
print(" is 3");
|
|
} else {
|
|
print(" is not 3");
|
|
}
|
|
print("\n");
|
|
printflush(message1);
|
|
asm("noop");
|
|
}
|