xo-object: initial implementation [wip]

This commit is contained in:
Roland Conybeare 2024-06-26 11:24:09 -04:00
commit d830632aea
16 changed files with 652 additions and 0 deletions

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

@ -0,0 +1,14 @@
/* @file ex1.cpp */
#include "xo/object/object.hpp"
#include <iostream>
int
main() {
using std::cout;
using std::endl;
cout << "hello, world!" << endl;
}
/* end ex1.cpp */