I have been given a struct to work with:
(struct Binding (id (value #:mutable)))
This struct represents a variable binding such as (set! x 3) where I would expect id = x and value = 3.
How do I create and initialize this struct? How do I get the values of id and value and to set the value of value?