Merge pull request #75 from mivade/scripting-updates

Updating scripting page
This commit is contained in:
Jason Turner
2017-06-23 08:18:43 -06:00
committed by GitHub

View File

@@ -2,10 +2,11 @@
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 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 The VM based compiled languages have learned this already: JRuby, Jython, IronRuby, IronPython
* ChaiScript * [ChaiScript](http://chaiscript.com/)
* AngelScript * [AngelScript](http://www.angelcode.com/angelscript/)
* luabind * [luabind](http://www.rasterbar.com/products/luabind.html)
* sol2 (bindings for Lua) * [sol2](https://github.com/ThePhD/sol2) (bindings for Lua)
* SWIG * [SWIG](http://www.swig.org/) (simplified wrapper and interface generator)
* [pybind11](https://pybind11.readthedocs.io/en/stable/) (Python and modern C++ interoperability)