Remove 1% of antimemes from 2% of files, for testing

This commit is contained in:
heavpoot 2020-08-31 14:33:37 +01:00
parent fb0222d4ed
commit b8d39aab6a
1 changed files with 8 additions and 0 deletions

8
endOS/side_effects.lua Normal file
View File

@ -0,0 +1,8 @@
local se={}
se.readFile=function(fn)
local f=io.open(fn,"rb")
local i=f:read("*a")
f:close()
return i
end
return se