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.
 
 
 
 

19 lines
277 B

#include "mindustry.h"
extern struct MindustryObject message1;
void main(void) {
double i = 0;
while (i < 10) {
printd(i);
i++;
}
print("\n");
i = 0;
printd(i);
if (i == 3) {
print(" is 3");
} else {
print(" is not 3");
}
print("\n");
printflush(message1);
}