initial commit

This commit is contained in:
2026-03-19 21:03:02 +00:00
commit 81fd7caddd

8
Hello World.c Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
// This is a C comment
printf("Hello World!\n");
printf("This is a new line!");
return 0;
}