`$lua = new Lua(); $lua->assign('TEST', false); $result = $lua->eval('return TEST'); var_dump($result);` This incorrectly returns `bool(true)` This also happens when returning value from PHP functions using RegisterCallback
$lua = new Lua(); $lua->assign('TEST', false); $result = $lua->eval('return TEST'); var_dump($result);This incorrectly returns
bool(true)This also happens when returning value from PHP functions using RegisterCallback