This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Change to variable interface request


The example should read:

 e.g.
> (define x '(x . 3))
> (define xvar (variable-bind-pair x))
#<variable name: x binding: 3>
> (variable-set! xvar 10)
10
> x
(x . 10)