duplicate

This commit is contained in:
Kartik K. Agaram 2022-09-03 14:59:57 -07:00
parent 17fa0ec9e7
commit 9a1e297ee3
1 changed files with 0 additions and 10 deletions

View File

@ -56,16 +56,6 @@ function save_to_disk(State)
outfile:close()
end
function file_exists(filename)
local infile = App.open_for_reading(filename)
if infile then
infile:close()
return true
else
return false
end
end
-- for tests
function load_array(a)
local result = {}