My omnium-gatherom of scripts and source code.
1/* ========================================================================
2 *
3 * Filename:
4 * Description:
5 * Author:
6 * Version: 0.0.1
7 *
8 * ======================================================================== */
9#include <iostream>
10
11auto main() -> int
12{
13 std::cout << "Hello world!\n";
14 return 0;
15}
16