GMS Linux: start?

This commit is contained in:
2025-12-30 01:20:20 +00:00
commit ac241a9148
48 changed files with 2028 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
if(argc <= 1) return 0;
for(int i=0;i<argc;i++)
{
printf("[%s]%c", argv[i], (i==argc-1?'\n':' '));
}
return atoi(argv[1]);
}