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.

10 lines
224 B

  1. #include "c2logic/builtins.h"
  2. extern struct MindustryObject message1;
  3. void main(void) {
  4. double x = rand(20), y = rand(20);
  5. printd(x);
  6. print("\n");
  7. printd(y);
  8. print("\n");
  9. print(max(x, y) < 10);
  10. printflush(message1);
  11. }