RosettaCodeData/Task/History-variables/PicoLisp/history-variables.l

9 lines
195 B
Plaintext

(de setH ("Var" Val)
(when (val "Var")
(with "Var"
(=: history (cons @ (: history))) ) )
(set "Var" Val) )
(de restoreH ("Var")
(set "Var" (pop (prop "Var" 'history))) )