1
0
mirror of https://github.com/bebbo/amiga-gcc.git synced 2025-12-08 22:38:25 +00:00

automate building windows setup

This commit is contained in:
bebbo
2018-10-03 20:10:13 +02:00
parent dc24cd8170
commit 3ccd3d777d
4 changed files with 16 additions and 0 deletions

6
setup/hello.c Normal file
View File

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