Add new section on correctness, mutation testing

This commit is contained in:
Jason Turner
2019-12-08 16:30:26 -07:00
parent 47e65a5359
commit 19e4c22de1
9 changed files with 49 additions and 6 deletions

12
10-Enable_Scripting.md Normal file
View File

@@ -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)