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