Re: string is read-only

2022-08-03 Thread Pierpaolo Bernardi
Il giorno 3 agosto 2022, alle ore 13:36, Damien Mattei ha scritto: >On Wed, Aug 3, 2022 at 12:59 PM Maxime Devos wrote: >> >> (My unverified hypothesis on why you aren't seeing an error here.) >> >> >>  it would be a big change and very strange :-O if the few lines of code >below in scheme ret

Re: cond clause does not allow definitions

2024-05-22 Thread Pierpaolo Bernardi
On Wed, May 22, 2024 at 10:08 PM Jeronimo Pellegrini wrote: > A: (cond (#t (define x 7) x)) > B: (cond (else (define x 7) x)) > > | system | A | B | > |-|---|---| > | Bigloo | 7 | 7 | > | Biwa| 7 | 7 | > | Chez| error | 7 |

Re: cond clause does not allow definitions

2024-05-23 Thread Pierpaolo Bernardi
On Thu, May 23, 2024 at 4:25 PM Damien Mattei wrote: > On Thu, May 23, 2024 at 12:37 AM Jeronimo Pellegrini wrote: >> On 2024-05-22 18:07, Pierpaolo Bernardi wrote: >> > In chez: >> > >> >> (cond (else (define x 7) x)) >> > 7 >> >> x &