aboutsummaryrefslogtreecommitdiff
path: root/docs/cpp-coding/10-Enable_Scripting.md
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2022-04-25 11:59:45 +0200
committerStefan Boberg <[email protected]>2022-04-25 11:59:45 +0200
commit21c9ec50b57821d150a3ba61ccff51a55383e031 (patch)
tree2acf72b77c32cc3dc3e3544c1767953acd2848f2 /docs/cpp-coding/10-Enable_Scripting.md
parentAdded option to use Catch2 framework for tests (diff)
parentCompute tweaks (#78) (diff)
downloadzen-21c9ec50b57821d150a3ba61ccff51a55383e031.tar.xz
zen-21c9ec50b57821d150a3ba61ccff51a55383e031.zip
Merge from main
Diffstat (limited to 'docs/cpp-coding/10-Enable_Scripting.md')
-rw-r--r--docs/cpp-coding/10-Enable_Scripting.md12
1 files changed, 0 insertions, 12 deletions
diff --git a/docs/cpp-coding/10-Enable_Scripting.md b/docs/cpp-coding/10-Enable_Scripting.md
deleted file mode 100644
index e22724b3e..000000000
--- a/docs/cpp-coding/10-Enable_Scripting.md
+++ /dev/null
@@ -1,12 +0,0 @@
-# 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)