I have a simple lua script here:
local string = "Hello World" print(string)
I have compiled this down to bytecode using luac53. However the problem arises when trying this:
local func = assert(loadfile("compiledlua.lua"))
This is where I get the:
“size_t size mismatch in precompiled chunk”.
I really have no idea why this is happening. Can anyone help me?