This is the mail archive of the guile@sourceware.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: Indirect object


I wrote:
> I guess this is naturally integrated with Scheme.

Or not, in a sense.  Also, allowing indirect objects may make it slower
to access regular objects, so I don't think this is a good idea...

I guess I could use a transformer:

  (set! $user-full-name "Kei")
  (insert $user-full-name)

changes

  (lisp-set! user-full-name "Kei")
  (insert (lisp-ref user-full-name))

This might be better.

-- Kei

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