Skip to content
Revilo0509 edited this page Oct 28, 2024 · 5 revisions

save()

Needs two arguments Name and data. It is the same as a normal variable you give it a name and then assign it data. for example

save("Pi", 3.14)

load()

Needs a single argument, Name. It will find the variable in the save file then return it. You can use it like

loadedData = load("Pi")

Clone this wiki locally