1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2025-11-19 22:31:22 +00:00
Files
amiga-gcc/setup/hello.c
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;
}