diff options
Diffstat (limited to 'samples/c/hello.c')
| -rw-r--r-- | samples/c/hello.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/samples/c/hello.c b/samples/c/hello.c new file mode 100644 index 0000000..c3ce445 --- /dev/null +++ b/samples/c/hello.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main() +{ + printf("Hello World\n"); + return 0; +} |
