In Common Lisp one can do
(defvar a 1)
(defvar b 'a)

(set b 2)
(print a) ;; prints 2

Is it possible in Racket. I mean
(define a 1)
(define b 'a)
(??? b 2) 

What write instead of ??? to change a?

-- 
Roman Klochkov
____________________
  Racket Users list:
  http://lists.racket-lang.org/users

Reply via email to