Adding hello

This commit is contained in:
Scott C. MacCallum 2023-01-13 08:01:38 -05:00
parent 8d124e4e32
commit 0a761fa2cb
1 changed files with 7 additions and 0 deletions

7
hello.c Normal file
View File

@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("Hello, world!");
return EXIT_SUCCESS;
}