Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.lisp > #59553
| From | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| Newsgroups | comp.lang.scheme, comp.lang.lisp |
| Subject | Re: Array constructor in Guile? |
| Date | 2024-04-19 15:08 -0400 |
| Organization | A noiseless patient Spider |
| Message-ID | <jwva5lpxjh8.fsf-monnier+comp.lang.lisp@gnu.org> (permalink) |
| References | <87le5bp5sa.fsf@axel-reichert.de> |
Cross-posted to 2 groups.
> #2((2 1) ((+ 2 3) 6))
Hmm... I see they implemented quasiquotation for vectors but not
for arrays:
scheme@(guile-user)> `#(1 2 ,(+ 3 4))
$1 = #(1 2 7)
scheme@(guile-user)> `#2((1 2) (,(+ 3 4) 5))
$2 = #2((1 2) ((unquote (+ 3 4)) 5))
scheme@(guile-user)>
I suggest you file a feature request for that.
Stefan
Back to comp.lang.lisp | Previous | Next — Previous in thread | Find similar
Array constructor in Guile? Axel Reichert <mail@axel-reichert.de> - 2024-04-18 08:02 +0200
Re: Array constructor in Guile? Lawrence D'Oliveiro <ldo@nz.invalid> - 2024-04-18 07:33 +0000
Re: Array constructor in Guile? Axel Reichert <mail@axel-reichert.de> - 2024-04-18 19:51 +0200
Re: Array constructor in Guile? Stefan Monnier <monnier@iro.umontreal.ca> - 2024-04-19 15:08 -0400
csiph-web