guile-json 2.0.0 released

2018-12-12 Thread Aleix Conchillo FlaquƩ
Hi, I'm pleased to announce a new guile-json release 2.0.0. This is a breaking change release. It is not possible anymore to specify a JSON object using alists. Instead alist->hash-table needs to be explicitly used (examples can be found on the github page). This makes the bidirectional mapping be

Re: Need help with macro

2018-12-12 Thread Alex Vong
Hello Mike, Mike Gran writes: > Hey all, > > I need help making a macro. > > I have an existing procedure of the form > > (call-method self method (...)) > > Note that SELF is a struct, METHOD is a string, and the ellipses can > be anything. > > I would like to make a macro that transforms into

Re: Need help with macro

2018-12-12 Thread Mark H Weaver
Hi Mike, Mike Gran writes: > Hey all, > > I need help making a macro. > > I have an existing procedure of the form > > (call-method self method (...)) > > Note that SELF is a struct, METHOD is a string, and the ellipses can > be anything. > > I would like to make a macro that transforms into the