add a hello.c examples w/ binaries

This commit is contained in:
brooke 2025-12-26 19:50:36 -08:00
commit 470087d063
4 changed files with 20 additions and 0 deletions

7
hello/hello.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
int main(int argc, const char **argv) {
puts("Hello, world!\n");
return 0;
}