appendfile
function appendfile(path: string, contents: string): ()Parameters
Example
writefile("file4.txt", "print(")
appendfile("file4.txt", "'Hello')")
print(readfile("file4.txt")) -- Output: print('Hello')Last updated
function appendfile(path: string, contents: string): ()writefile("file4.txt", "print(")
appendfile("file4.txt", "'Hello')")
print(readfile("file4.txt")) -- Output: print('Hello')Last updated