Skip to content

Commit 1745dd1

Browse files
authored
Merge pull request cpp-best-practices#75 from mivade/scripting-updates
Updating scripting page
2 parents ab9091a + b75f6ca commit 1745dd1

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

09-Enable_Scripting.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
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.
44

5-
The VM based compiled languages have learned this already: JRuby, Jython, IronRuby, IronPython
5+
The VM based compiled languages have learned this already: JRuby, Jython, IronRuby, IronPython
66

7-
* ChaiScript
8-
* AngelScript
9-
* luabind
10-
* sol2 (bindings for Lua)
11-
* SWIG
7+
* [ChaiScript](http://chaiscript.com/)
8+
* [AngelScript](http://www.angelcode.com/angelscript/)
9+
* [luabind](http://www.rasterbar.com/products/luabind.html)
10+
* [sol2](https://github.com/ThePhD/sol2) (bindings for Lua)
11+
* [SWIG](http://www.swig.org/) (simplified wrapper and interface generator)
12+
* [pybind11](https://pybind11.readthedocs.io/en/stable/) (Python and modern C++ interoperability)

0 commit comments

Comments
 (0)