mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
11 lines
156 B
C++
11 lines
156 B
C++
#include <chaiscript/chaiscript.hpp>
|
|
|
|
|
|
int main()
|
|
{
|
|
chaiscript::ChaiScript *chai = new chaiscript::ChaiScript();
|
|
delete chai;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|