JarrettBillingsley / Croc

Croc is an extensible extension language in the vein of Lua, which also wishes it were a standalone language. Also it's fun.
http://www.croc-lang.org
79 stars 12 forks source link

Shared lib module loading support #141

Open JarrettBillingsley opened 9 years ago

JarrettBillingsley commented 9 years ago

This was something that wasn't really practical with the D implementation, but it's no problem now!

JarrettBillingsley commented 9 years ago

Huh... I wonder how Lua deals with the problem of Windows DLLs not being able to link to symbols in the host. Does every Lua module DLL have its own copy of the Lua VM? Is that why the lua_version() API func exists?