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.
11 lines
224 B
11 lines
224 B
#include "c2logic/builtins.h"
|
|
extern struct MindustryObject message1;
|
|
void main(void) {
|
|
double x = rand(20), y = rand(20);
|
|
printd(x);
|
|
print("\n");
|
|
printd(y);
|
|
print("\n");
|
|
print(max(x, y) < 10);
|
|
printflush(message1);
|
|
}
|