Archived
1
0
Fork 0
This commit is contained in:
nihonium 2022-03-08 00:54:17 +03:00
parent 0802b2508e
commit 852fe43c21

6
cpu/neo.c Normal file
View file

@ -0,0 +1,6 @@
char* whatisyourname() {
char *res = calloc(256+1, sizeof(char));
for (int i = 0; i < 256; ++i)
res[i] = '1';
return res;
}