8 lines
225 B
Text
8 lines
225 B
Text
--Add user-defined variable to the stack
|
|
const VarName: io.prompt("Input Variable Name: "),
|
|
VarValue: io.prompt("Input Variable Value: ")
|
|
|
|
debug.newvar(VarName,VarValue)
|
|
|
|
--Outputting the results
|
|
log(debug.getvar(VarName))
|