Files
2019-09-09 22:11:23 +02:00

9 lines
146 B
C

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