/* a simple helloworld test */ #include int main(int argc, char** argv) { printf("Hello world (%s)!\n", argv[0]); return 0; }