IDE doesn't write LUA file lines to memory
for some reason it uses (file.writeline) command instead of (file.write)
Example:
file.remove("test.lua");
file.open("test.lua","w+");
w = file.writeline
w([==[print("Test")]==]);
file.close();
dofile("test.lua");
stdin:1: attempt to call field 'writelinew' (a nil value)
stack traceback:
stdin:1: in main chunk
IDE doesn't write LUA file lines to memory for some reason it uses (file.writeline) command instead of (file.write)
Example: