Lua interpreter for Hascal programming language
Requirements :
$ hascal get github.com/bistcuite/luahas lua
use lua
function main():int {
lua_exec("print 'hello world'")
return 0
}
Compile and run :
$ hascal example.has
$ ./example
hello world
MIT