ChaiScript/src/test_module.cpp
2009-09-06 23:33:03 +00:00

20 lines
318 B
C++

#include <chaiscript/chaiscript.hpp>
#include <string>
std::string hello_world()
{
return "Hello World";
}
extern "C"
{
chaiscript::ModulePtr create_chaiscript_module_test()
{
chaiscript::ModulePtr m(new chaiscript::Module());
m->add(chaiscript::fun(hello_world), "hello_world");
return m;
}
}