Re: argument threading macros & combinators for guile

2020-08-06 Thread vapnik spaknik via General Guile related discussions
>On Thursday, August 6, 2020, 09:43:53 PM GMT+1, Linus Björnstam > wrote: >I have some old ones over here: https://hg.sr.ht/~bjoli/guile-threading-macros Thanks, that looks great Linus. Is there a guix package for them?

Re: argument threading macros & combinators for guile

2020-08-06 Thread Linus Björnstam
I forgot to say, that is a trivial fix! Just import the bindings from srfi 26 and re-export them. This code can also be used to implement the new srfibchaij macro, although a syntax-case one would be about two billion times shorter (and faster). -- Linus Björnstam On Thu, 6 Aug 2020, at

Re: argument threading macros & combinators for guile

2020-08-06 Thread Linus Björnstam
I have some old ones over here: https://hg.sr.ht/~bjoli/guile-threading-macros They are written using syntax-rules and I am not sure how well they combine with srfi-26. If srfi 26 exports auxiliary syntax, you won't be able to combine them since that syntax will shadow the unbound syntax <> and

[ANN] Metabash 0.0.0

2020-08-06 Thread Artyom V. Poptsov
Hello Guilers, I started a project called Metabash -- it's a library for GNU Guile that allows to create distributed pipelines that connect processes (akin to Unix pipes) across different hosts: https://github.com/artyom-poptsov/metabash I thought if would be cool to have such a facility for

argument threading macros & combinators for guile

2020-08-06 Thread vapnik spaknik
Hi, does anyone know of guile modules containing argument threading macros & combinators, e.g. similar to dash.el & dash-functional.el for elisp? Joe.

Python on guile v1.2.3.6

2020-08-06 Thread Stefan Israelsson Tampe
Hi, This is an interesting release as I'm starting to get the cpython's unit tests to work. Still remains a lot of work but much more is now working according to the CPython standard. Next up is getting all unit tests for the test framework to pass. Then to get as much as possible of the CPython