Borrar comentario

This commit is contained in:
Cat /dev/Nulo 2022-05-03 11:39:15 -03:00
parent de600d1ecc
commit e2b048151b

View file

@ -13,7 +13,7 @@ end
local function read_file(path)
local file = io.open(path, "r")
if not file then return nil end
local content = file:read "*a" -- *a or *all reads the whole file
local content = file:read "*a"
file:close()
return content
end