readfile
Retrieves the content of the file at the specified path.
function readfile(path: string): stringParameter
path- path to the file that will be read.
Example
writefile("file0.txt", "Hello")
print(readfile("file0.txt")) -- Output: HelloLast updated