| 4 | #include <chaiscript/chaiscript_basic.hpp> |
| 5 | |
| 6 | int main() |
| 7 | { |
| 8 | Multi_Test_Chai chaitest; |
| 9 | Multi_Test_Module chaimodule; |
| 10 | |
| 11 | std::shared_ptr<chaiscript::ChaiScript_Basic> chai = chaitest.get_chai(); |
| 12 | chai->add(chaimodule.get_module()); |
| 13 | return chai->eval<int>("get_module_value()"); |
| 14 | } |
nothing calls this directly
no test coverage detected