h = fs.open("x", "w")
h.write("\13")
h.close()
h=fs.open("x", "r")
string.byte(h.read())
h.close()
And the result was 13, even though I expected it to be 10
It's causing major flaws in a program that I am writing, it took a tremendous amount of debugging to find this issue, and I can't really escape it in the auto-generated file that easily
Edited by EveryOS, 30 June 2018 - 01:00 AM.












