mirror of
https://github.com/ptitSeb/box64.git
synced 2025-08-28 09:33:48 +02:00
7 lines
142 B
C
7 lines
142 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("Hello, argc=%d argv[%d]=%s\n", argc, argc-1, argv[argc-1]);
|
|
return 0;
|
|
}
|