subrepo: subdir: "xo-interpreter" merged: "047658a5" upstream: origin: "git@github.com:Rconybea/xo-interpreter.git" branch: "main" commit: "047658a5" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
19 lines
357 B
C++
19 lines
357 B
C++
/** @file replxx.cpp **/
|
|
|
|
#include "xo/interpreter/Schematika.hpp"
|
|
|
|
int
|
|
main(int argc, char ** argv)
|
|
{
|
|
using xo::log_level;
|
|
using xo::scm::Schematika;
|
|
|
|
Schematika::Config cfg;
|
|
cfg.debug_flag = true;
|
|
cfg.vsm_log_level_ = log_level::verbose;
|
|
Schematika scm = Schematika::make(cfg);
|
|
|
|
scm.interactive_repl();
|
|
}
|
|
|
|
/* end replxx.cpp */
|