[r6rs-discuss] Use backquote in "case"
(I was interested in feedback on the following before submitting a formal
comment.)
Would it make sense for "case" to be defined in terms of backquote rather
than quote? The problem is that the use of quote makes references to
constants impossible. For example, this doesn't work:
(define some-const 'xxx)
(case some-val
[(some-const)
...])
If "case" were defined in terms of backquote, though, this would be
possible:
(define some-const 'xxx)
(case some-val
[(,some-const)
...])
Received on Fri Nov 10 2006 - 00:27:50 UTC
This archive was generated by hypermail 2.3.0
: Wed Oct 23 2024 - 09:15:00 UTC