Added the main.c file with a Hello world print.

This commit is contained in:
rocketdebris 2025-06-03 10:31:25 -04:00
parent e6448c1443
commit f82ba0e2e8

5
main.c Normal file
View file

@ -0,0 +1,5 @@
#include <stdio.h>
int main(void) {
printf("Hello, PID!\n");
}