feat: scaffold C++ template with tooling helpers

This commit is contained in:
2025-09-23 13:34:55 +08:00
parent 3e9993775d
commit 237e7c3138
9 changed files with 197 additions and 0 deletions

14
src/main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <numeric>
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
// TODO: Add program logic here.
return 0;
}