diff --git a/usr/hello/hello.c b/usr/hello/hello.c index f836ad3..7da2450 100644 --- a/usr/hello/hello.c +++ b/usr/hello/hello.c @@ -21,5 +21,11 @@ int main(int argc, char *argv[]) { printf("Hello, world! from userspace\n"); + + printf("argv:\n"); + for(int i = 0; i < argc; ++i) { + printf(" %d -> %s\n", i, argv[i]); + } + return EXIT_SUCCESS; }