27 lines
515 B
C++
27 lines
515 B
C++
/** @file init_interpreter.cpp
|
|
*
|
|
* author: Roland Conybeare, Nov 2025
|
|
*/
|
|
|
|
#include "init_interpreter.hpp"
|
|
#include "LocalEnv.hpp"
|
|
#include "xo/subsys/Subsystem.hpp"
|
|
|
|
namespace xo {
|
|
using xo::scm::LocalEnv;
|
|
|
|
void
|
|
InitSubsys<S_interpreter_tag>::init()
|
|
{
|
|
LocalEnv::reflect_self();
|
|
}
|
|
|
|
InitEvidence
|
|
InitSubsys<S_interpreter_tag>::require()
|
|
{
|
|
return Subsystem::provide<S_interpreter_tag>("interpreter", &init);
|
|
}
|
|
|
|
} /*namespace xo*/
|
|
|
|
/* end init_interpreter.cpp */
|