writefile
function writefile(path: string, data: string): ()Parameters
Example
writefile("file.txt", "Hello world")
print(readfile("file.txt")) -- Output: Hello worldLast updated
function writefile(path: string, data: string): ()writefile("file.txt", "Hello world")
print(readfile("file.txt")) -- Output: Hello worldLast updated