Re: [ANN] Scheme-GNUnet 0.2 released

2022-02-03 Thread Maxime Devos
Hi, Keith Wright schreef op do 03-02-2022 om 15:39 [-0500]: > Maxime Devos writes: > > > The source code can be found at , > > > I can send a copy of the manual (PDF, HTML or TeXmacs) by mail if desired. > > Would it not be easier to put the documenta

Re: [ANN] Scheme-GNUnet 0.2 released

2022-02-03 Thread Keith Wright
Maxime Devos writes: > The source code can be found at , > I can send a copy of the manual (PDF, HTML or TeXmacs) by mail if desired. Would it not be easier to put the documentation in the same place as the source code? (Possibly in a separate directo

[ANN] Scheme-GNUnet 0.2 released

2022-02-03 Thread Maxime Devos
Version 0.2 of Scheme-GNUnet has been released. The main change since the 0.1 release, is DHT support. * What is Scheme-GNUnet? Scheme-GNUnet is a WIP (Guile) Scheme port of the GNUnet client libraries. Unlike gnunet-guile, it is not a binding for the C libraries. It can be used in multi-thread

Re: reserved-keyword in macro

2022-02-03 Thread Damien Mattei
oh :-O yes it is the behavior expected : assign the 2nd element of an array T with value 1 : prefix notation of : (<- ($bracket-apply$ T 2) 1) is equivalent in Curly Infix syntax to : {T[2] <- 1} as expected when $bracket-apply$ is not bound we have the good result. Thanks for this result. Of cours