minetest_wadsprint/lib.file_get_contents.lua

6 lines
125 B
Lua
Raw Normal View History

2019-08-24 07:55:17 -07:00
function file_get_contents(file)
local fp = io.open(file,"r")
local data = fp:read("*all")
fp:close()
return data
end