From f8d9ac5d13dd37b8b57af0478e77ba1e75c813aa Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Tue, 11 May 2021 13:05:39 +0200 Subject: Adding zenservice code --- docs/cpp-coding/10-Enable_Scripting.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/cpp-coding/10-Enable_Scripting.md (limited to 'docs/cpp-coding/10-Enable_Scripting.md') diff --git a/docs/cpp-coding/10-Enable_Scripting.md b/docs/cpp-coding/10-Enable_Scripting.md new file mode 100644 index 000000000..e22724b3e --- /dev/null +++ b/docs/cpp-coding/10-Enable_Scripting.md @@ -0,0 +1,12 @@ +# Enable Scripting + +The combination of scripting and compiled languages is very powerful. It gives us the things we've come to love about compiled languages: type safety, performance, thread safety options, consistent memory model while also giving us the flexibility to try something new quickly without a full rebuild. + +The VM based compiled languages have learned this already: JRuby, Jython, IronRuby, IronPython + + * [ChaiScript](http://chaiscript.com/) + * [AngelScript](http://www.angelcode.com/angelscript/) + * [luabind](http://www.rasterbar.com/products/luabind.html) + * [sol2](https://github.com/ThePhD/sol2) (bindings for Lua) + * [SWIG](http://www.swig.org/) (simplified wrapper and interface generator) + * [pybind11](https://pybind11.readthedocs.io/en/stable/) (Python and modern C++ interoperability) -- cgit v1.2.3