This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Description
When I wanted to compile Data::Lua, the test failed. So I did some tests and found that the core Lua functions loadstring and setfenv are not defined anymore.
Test can be done with the example from man page and the following lua code:
function answer (a, b)
return loadstring("return "..a.."*"..b)()
end