#include namespace ADVect { void bind_NVL() { auto f = [](NVL::Environment::Variable x) { return NVL::Environment::Variable(NVL::Environment::Type::Nil); }; NVL::Environment::ENVIRONMENT.enter(u"Hello", { f, 1 }); NVL::Environment::ENVIRONMENT.enter(u"Command", { f, 1 }); NVL::Environment::ENVIRONMENT.enter(u"Do", { f, 2 }); NVL::Environment::ENVIRONMENT.enter(u"Set", { f, 2 }); NVL::Environment::ENVIRONMENT.enter(u"This", { f, 1 }); NVL::Environment::ENVIRONMENT.enter(u"ClearDialog", { f, 0 }); NVL::Environment::ENVIRONMENT.enter(u"Choice", { f, 2 }); NVL::Environment::ENVIRONMENT.enter(u"=?", { f, 2 }); NVL::Environment::ENVIRONMENT.enter(u"+", { f, 2 }); NVL::Environment::ENVIRONMENT.enter(u"switch", { f, 2 }); } }