Hi all, Forgive me if this is a dumb question. I come from Python land, and I want to complement my scripted-programming skills with a good compiled language. Nimrod looks awesome because it compiles to a standard, cross-platform intermediate (C), and because it's got a nice, flexible syntax, and because it seems to play nicely with scripted languages, although that aspect seems poorly documented as yet.
Lua in particular seems interesting to me because in theory the Lua compiler could be compiled into the final binary, giving a nice marriage of high-level scripting and cross-platform compiled.
The documentation and "blurb" discusses "bindings" for Lua, but that implies Lua has to be separately installed. The point of Lua is to embed it in binary distributions, so how would I do this in Nimrod, and how would I use/call the embedded interpreter to interact with native Nimrod code in the rest of the code?