adding in build and helloworld

This commit is contained in:
talksik
2024-01-13 10:58:32 -08:00
parent c1a9358e38
commit 1cd19ddf3a
33 changed files with 3285 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <iostream>
int main(int argc, char *argv[]) {
std::cout << "Hello, World!" << std::endl;
return 0;
}
+1
View File
@@ -0,0 +1 @@