Re: boiler plate generation with hygenic macros in guile

2022-07-28 Thread Blake Shaw
Hi Maxime & Liliana, I just want to pop in and say thanks for your advice, its been helpful. I almost have the implementation down, but a few tricky bits I still havent got right... (what I'm attempting is a little more tricky than the example I gave here, which I shortened for the sake of transmi

Re: boiler plate generation with hygenic macros in guile

2022-07-25 Thread Liliana Marie Prikler
Hi Blake, Am Mittwoch, dem 20.07.2022 um 23:57 + schrieb Blake Shaw: > Ah! sorry, let me begin again: > > Right now I am working on a window manager extension system in Guile > and GOOPs, and I want to eliminate the boilerplate for generating class > slots, with a syntax-case macro like: > >

Re: boiler plate generation with hygenic macros in guile

2022-07-21 Thread Blake Shaw
Ah! sorry, let me begin again: Right now I am working on a window manager extension system in Guile and GOOPs, and I want to eliminate the boilerplate for generating class slots, with a syntax-case macro like: #+begin_example scheme (define-syntax slot-machine (λ (form) (syntax-case for

boiler plate generation with hygenic macros in guile

2022-07-21 Thread Blake Shaw
Hi folks,