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

7 lines
197 B
Text

local(thename = web_request->param('thename')->asString)
if(#thename->size) => {^
var(#thename = math_random)
var(#thename)
else
'<a href="?thename=xyz">Please give the variable a name!</a>'
^}