minetest_wadsprint/lib.file_get_contents.lua

6 lines
125 B
Lua

function file_get_contents(file)
local fp = io.open(file,"r")
local data = fp:read("*all")
fp:close()
return data
end