My omnium-gatherom of scripts and source code.
at main 16 lines 330 B view raw
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