readfile
function readfile(path: string): stringParameter
Example
writefile("file0.txt", "Hello")
print(readfile("file0.txt")) -- Output: HelloLast updated
function readfile(path: string): stringwritefile("file0.txt", "Hello")
print(readfile("file0.txt")) -- Output: HelloLast updated