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.
21 lines
333 B
21 lines
333 B
#include "c2logic/builtins.h"
|
|
extern struct MindustryObject message1;
|
|
double factorial(int x) {
|
|
int ret = 1;
|
|
for (int i = 2; i <= x; i++) {
|
|
ret *= i;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
double a(void) {
|
|
return 5;
|
|
}
|
|
void main(void) {
|
|
printd(a());
|
|
print("\n");
|
|
printd(factorial(4));
|
|
print("\n");
|
|
printd(factorial(5));
|
|
printflush(message1);
|
|
}
|