mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 14:08:32 +00:00
10 lines
140 B
C
10 lines
140 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
for (int i=1; i<argc; i++) {
|
|
printf("arg%d=%s;", i, argv[i]);
|
|
}
|
|
return 0;
|
|
}
|