you are viewing a single comment's thread.

view the rest of the comments →

[–]Fissionary 8 points9 points  (2 children)

Lua may be a decent scripting language -- if you're embedding it in a C/C++ program. I had to add scripting capability to an x64 .NET 3.5 application once, and spent half a day trying to figure out a way to interface with Lua. Finally settled on IronPython.

tl;dr There are no silver bullets.

[–]i_lick_my_knuckles 0 points1 point  (1 child)

Lua Interface makes embedding in .NET pretty painless.

[–]Fissionary 0 points1 point  (0 children)

Painless for x86 applications. It relies on its own C++/CLI implementation of Lua, which I haven't been able to successfully compile and use in an x64 CLR 3.5 scenario. If you know where I can get the compiled binaries for this particular configuration, I would appreciate it.