subrepo: subdir: "xo-object" merged: "d830632a" upstream: origin: "git@github.com:Rconybea/xo-object.git" branch: "main" commit: "d830632a" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
14 lines
188 B
C++
14 lines
188 B
C++
/* @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 */
|