Initial commit

This commit is contained in:
2026-02-20 01:08:15 +00:00
commit eb79d538de
5 changed files with 59 additions and 0 deletions

8
helloWorld.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <stdio.h>
using namespace std;
int main() {
printf("Hello, World!\n");
return 0;
}