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

save(adress,data)

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(name)

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")

listVariables()

Prints and returns all stored variables.

remove(name):

Removes a specified variable. For example

remove("Very Good Variable Name")

clearAllVariables()

WARNING USE WITH CAUTION, REMOVES ALL STORED VARIABLES

removeVariableFile()

WARNING USE WITH EXTREME CAUTION, REMOVES THE VARIABLE FILE

Clone this wiki locally