feat: scaffold C++ template with tooling helpers
This commit is contained in:
14
src/main.cpp
Normal file
14
src/main.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user