Yet another C++ boilerplate for VSCode.
All you need to do is click the green Use This Template button in the top left corner.
The boilerplate itself doesn't contain much, just a simple Hello World:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World" << endl;
return 0;
}- Working on Linux
- C++20 (Using Gnu++20)
- Error Squiggles Enabled