RosettaCodeData/Task/Dynamic-variable-names/Epoxy/dynamic-variable-names.epoxy
2023-07-01 13:44:08 -04:00

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