mirror of
https://github.com/ptitSeb/box64.git
synced 2025-02-18 21:42:17 +00:00
8 lines
142 B
C
8 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;
|
|
}
|