Re: GNU G-Golf 0.8.0-rc-3 available for testing

2024-04-17 Thread pelzflorian (Florian Pelz)
Thank you for the work, David. I have a question; how do you debug when Guile crashes to terminal printing “Segmentation fault”`? The long story so far: I want to develop a GTK app with G-Golf. I try to run it with GNU Guix [1] (not Debian like you do, as far as I remember), because now the

Re: Advice on ST-Object data-structure setup

2024-04-17 Thread ken . dickey
On 2024-04-17 09:34, Maxime Devos wrote: > LICENSE says 'Copyright (c) 2016', but some files date from 2024. It's a bit > inconsistent ... Do you mean that changes >2016 are public domain, or not > covered by BSD license, or the inconsistency is an oversight? Ah. Thanks. I used Larceny

RE: Advice on ST-Object data-structure setup

2024-04-17 Thread Maxime Devos
>is to get the mechanics working.  For this I > need to have an St-Object which is basically a Vector but which > answers #false to vector? and #true to st-object? > > [Note https://github.com/KenDickey/Crosstalk/blob/master/st-kernel.scm ] > > I note that one might change the T7 type-tag from

RE: Advice on ST-Object data-structure setup

2024-04-17 Thread Maxime Devos
LICENSE says ‘Copyright (c) 2016’, but some files date from 2024. It’s a bit inconsistent … Do you mean that changes >2016 are public domain, or not covered by BSD license, or the inconsistency is an oversight?

RE: Question about handling SIGINT properly in Guile

2024-04-17 Thread Vijay Marupudi
Here's another simple reproduction, Guile's own webserver module (use-modules (web server)) (define (handler request body) (values '((content-type . (text/plain))) "Hello, World!")) (run-server handler) It needs two SIGINTs to properly end the program. I think I'm encountering a

Re: Advice on ST-Object data-structure setup

2024-04-17 Thread ken . dickey
Basile, Thank you much for the thoughtful reply. On 4/16/24 23:14, ken.dic...@whidbey.com wrote: .. I am looking at porting a toy Smalltalk-in-Scheme implementation to Guile. On 2024-04-17 00:10, Basile Starynkevitch wrote: .. I think it depends upon your goals; I assume your x86-64

Advice on ST-Object data-structure setup

2024-04-17 Thread Basile Starynkevitch
(sorry, resending as plain text to guile-user) On 4/16/24 23:14, ken.dic...@whidbey.com wrote: Greetings, I am looking at porting a toy Smalltalk-in-Scheme implementation to Guile. [Note https://github.com/KenDickey/Crosstalk ]. On github I (Basile Starynkevitch) am

Re: Advice on ST-Object data-structure setup

2024-04-17 Thread Basile Starynkevitch
On 4/16/24 23:14, ken.dic...@whidbey.com wrote: Greetings, I am looking at porting a toy Smalltalk-in-Scheme implementation to Guile. [Note https://github.com/KenDickey/Crosstalk ]. On github I (Basile Starynkevitch) am https://github.com/bstarynk and contributing to