Re: Advice on ST-Object data-structure setup

2024-04-20 Thread ken . dickey
On 2024-04-20 02:49, Mikael Djurfeldt wrote: Have you looked at Guile's OOP system GOOPS? Thanks, Mikael. I have implemented a number of object systems, including CLOS style systems such as GOOPS. The mismatch here is in the overhead of the multimethod dispatch. I would like something fai

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 Scheme

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 compute

Advice on ST-Object data-structure setup

2024-04-16 Thread ken . dickey
Greetings, I am looking at porting a toy Smalltalk-in-Scheme implementation to Guile. [Note https://github.com/KenDickey/Crosstalk ]. The idea is for simplicity first, then making into a module and potentially evolving Smalltalk into a supported, compiled ",language" in the Guile way. The