initial implementation + example + cmake "build"

This commit is contained in:
Roland Conybeare 2023-09-11 16:09:26 -04:00
commit 8a1f29a44b
15 changed files with 1130 additions and 0 deletions

14
example/ex1/ex1.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "nestlog/scope.hpp"
using namespace xo;
void A(int x) {
XO_SCOPE(log);
log("x:", x);
}
int
main(int argc, char ** argv) {
A(66);
}