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 */
|