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.
15 lines
235 B
15 lines
235 B
#include "mindustry.h"
|
|
extern struct MindustryObject message1;
|
|
void main(void) {
|
|
double i = 0;
|
|
while (i < 10) {
|
|
if (i == 3) {
|
|
print("is 3");
|
|
} else {
|
|
print("not 3");
|
|
}
|
|
}
|
|
printd(i);
|
|
print("\n");
|
|
printflush(message1);
|
|
}
|