neo
This commit is contained in:
parent
0802b2508e
commit
852fe43c21
1 changed files with 6 additions and 0 deletions
6
cpu/neo.c
Normal file
6
cpu/neo.c
Normal 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;
|
||||
}
|
Reference in a new issue