indentlog: + hello example + cmake install attempt

This commit is contained in:
Roland Conybeare 2023-09-19 14:34:41 -04:00
commit 468c525470
6 changed files with 25 additions and 14 deletions

5
example/hello/hello.cpp Normal file
View file

@ -0,0 +1,5 @@
#include <iostream>
int main(int argc, char ** argv) {
std::cout << "Hello, world!" << std::endl;
}