Files
amiga-gcc/setup/hello.c
T
2018-10-03 20:10:13 +02:00

6 lines
116 B
C

#include <stdio.h>
int main(int argc, char ** argv) {
printf("hello world - with %d args\n", argc);
return 0;
}