xo-tokenizer2/example/ex1/ex1.cpp

14 lines
188 B
C++

/** @file ex1.cpp **/
#include "xo/expression/Constant.hpp"
#include <iostream>
int
main() {
using xo::ast::make_constant;
auto expr = make_constant(7);
}
/** end ex1.cpp **/