Sujet : Re: Array constructor in Guile?
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.lang.scheme comp.lang.lispDate : 18. Apr 2024, 09:33:44
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <uvqico$24ql9$1@dont-email.me>
References : 1
User-Agent : Pan/0.155 (Kherson; fc5a80b8)
On Thu, 18 Apr 2024 08:02:29 +0200, Axel Reichert wrote:
But I did not find an array "constructor" syntax that allows me to
create an array such as
#2((2 1) ((+ 2 3) 6))
resulting in
#2((2 1) (5 6))
(list->array 2 `((2 1) (,(+ 2 3) 6)))