Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
data
path
writefile
appendfile(path: string, data: string): ()
string
void
<<<<<<< HEAD appendfile("log.txt", "new log entry\n") ======= -- appendfile(path: string, data: string): () >>>>>>> 50e30f53759b0538759af25c9b271514aa2c9290
local function log(message) appendfile("logs/run.log", `[{os.date("%H:%M:%S")}] {message}\n`) end log("script started") log("finished setup")