1You could make this byte array null terminated and use `luaL_dostring` but that
2is probably not advisable.
3
4	xxd -n hi -i hi.lua | sed 's/};/,\ 0\n};/' > hi.h
5
6Much better to use `luaL_loadbuffer` instead.
7https://www.lua.org/manual/5.4/manual.html#luaL_loadbuffer