This commit is contained in:
ilsix 2024-04-07 01:47:03 +02:00
parent 7385425961
commit 5419075493

6
c/echo.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main( int argc, char *argv[] ) {
printf("Echo: %s\n", argv[1]);
return 0;
}