[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Oversight in R^4RS: `@' as an ``extended alphabetic character''



Clever implementations of WRITE would have to be sure to do the right
thing with
  (write '`(foo , @bar))
namely
  `(foo , @bar)    OR   (quasiquote (foo (unquote @bar)))   OR   ...
    BUT NOT  `(foo ,@bar)

Jonathan