How can I define value of variable as variable name?
For example I define x
as newname
(define x 'newname)
then I want to define new variable with name of value of x
.
I want something like
(define x 'asd)
and if I call newname
I get 'asd
Is it possible?