C++ Notes: Example - Template for main

It doesn't save much typing, but I usually start with something like the following.
// directory/file.cpp - Program to do something
// Your Name, date

#include <iostream>
using namespace std;

int main() {
    
    return 0;
}