GNU Guile 3.0.1 released

2020-03-08 Thread Ludovic Courtès
We are delighted to announce GNU Guile release 3.0.1, the first bug-fix release of the new 3.0 stable series. This release represents 45 commits by 7 people since version 3.0.0. See the NEWS excerpt that follows for full details. * * * The Guile web page is locate

Re: Nyacc question: where are the actions bound?

2020-03-08 Thread Matt Wette
On 3/8/20 3:14 AM, to...@tuxteam.de wrote: Hi, I'm playing around with Nyacc: I found a first little use case to get my feet wet. First of all, than you, Matt, for this impressive package. Shamelessly stolen from the minimal example, playground looks roughly like this: #+begin_source schem

Re: How to correctly load modules from runtime defineable locations?

2020-03-08 Thread Ludovic Courtès
Hello, Михаил Бахтерев skribis: > (let* ((fn (current-filename)) >(dir (if (string? fn) (dirname fn) ".")) >(lib (if (string? fn) (string-append (dirname dir) "/lib") "../lib"))) > (add-to-load-path li

Nyacc question: where are the actions bound?

2020-03-08 Thread tomas
Hi, I'm playing around with Nyacc: I found a first little use case to get my feet wet. First of all, than you, Matt, for this impressive package. Shamelessly stolen from the minimal example, playground looks roughly like this: #+begin_source scheme (use-modules (nyacc lalr)) (use-modules (n