Il giorno lun 14 feb 2022 alle ore 17:56 Olivier Dion via Developers list
for Guile, the GNU extensibility library I've started a small TexInfo manual for that. I will try to share it by
> the end of the week or this weekend.
>
> Thank you, Olivier
>
> I'm looking forward to it
>
Il giorno lun 14 feb 2022 alle ore 18:01 Vijay Marupudi <
vi...@vijaymarupudi.com> ha scritto:
> > Is there any interest/possibility to have such a cookbook hosted
> > within the Guile official documentation (as it is for Guix) ?
>
> I personally think that a Cookbook should be an independent effo
On Wed, 16 Feb 2022 at 09:04, Catonano wrote:
>
> Il giorno lun 14 feb 2022 alle ore 18:01 Vijay Marupudi
> ha scritto:
>>
>> > Is there any interest/possibility to have such a cookbook hosted
>> > within the Guile official documentation (as it is for Guix) ?
>>
>> I personally think that a Cook
On Mon, 14 Feb 2022, Vijay Marupudi wrote:
>> Is there any interest/possibility to have such a cookbook hosted
>> within the Guile official documentation (as it is for Guix) ?
> I've personally started on this effort yesterday, writing about error
> handling in Guile.
>
> https://vijaymarupudi.co
Il giorno mer 16 feb 2022 alle ore 10:54 Neil Jerram
ha scritto:
>
>
>
> > As for you creating a web site, I'd prefer such a website to be a
> communitarian effort, rather than depend on a single person
> >
> > Maybe a wiki on Gitlab could do and it could have several mantainers ?
> > I'd be happ
> Awesome blogpost. Very clean and fun to read! Is this generated with
> static website generator for org-mode?
That's great to hear! Appreciate the feedback, I'm glad the writing
style is working, will try to maintain it.
The website is a static website that is implemented in Guile, but does
n
I have been working on improving the interface, And this works
(define gen
(make-generator
(lambda (x)
(let lp ((i 0))
(when (< i 2000)
(return x i)
(lp (+ i 1)))
(define (test)
(let ((g (gen)))
(let lp ((s 0))
(let ((i (next g)))
(if
Hi,
> I've personally started on this effort yesterday, writing about error
> handling in Guile.
>
> https://vijaymarupudi.com/blog/2022-02-13-error-handling-in-guile.html
>
>
I've finally read your post
It's nice that it clears the distinction between old forms and new ones
I'd like to have co