Initial commit

This commit is contained in:
2025-02-02 14:43:08 +10:00
commit 572a83bce6
6 changed files with 215 additions and 0 deletions

12
src/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <cstdlib>
#include <print>
int main(int argc, char** argv) {
std::println("Hello, World!");
for (int i = 0; i < argc; i++) {
std::println("argv[{}] = {}", i, argv[i]);
}
return EXIT_SUCCESS;
}