Re: SRFI-64: test exception symbol

2020-05-01 Thread Taylan Kammer
On 30.04.2020 17:55, Vladimir Zhbanov wrote: On Thu, Apr 30, 2020 at 06:06:21PM +0300, Vladimir Zhbanov wrote: Hi, In SRFI-64, is there a way to test what exception raised using test-error() or anything else? I know about looking into test logs (if 'test-error' is used), though that's not what

Re: database library, siilar to guile-dbi, for Guile 3 ?

2020-05-01 Thread carl hansen
On Thu, Apr 30, 2020 at 2:45 PM Jeronimo Pellegrini via General Guile related discussions wrote: > > Hello, > > I am looking for a database library that would abstract away the underlying > db engine. I see that guile-dbi is listed as "Guile 2.2" only on the list of > libraries on the Guile websit

Re: SRFI-64: test exception symbol

2020-05-01 Thread Vladimir Zhbanov
Hi Taylan, On Fri, May 01, 2020 at 11:58:41AM +0200, Taylan Kammer wrote: > On 30.04.2020 17:55, Vladimir Zhbanov wrote: > > On Thu, Apr 30, 2020 at 06:06:21PM +0300, Vladimir Zhbanov wrote: > > > Hi, > > > > > > In SRFI-64, is there a way to test what exception raised using > > > test-error() or

Loading multiple versions of a Module

2020-05-01 Thread Martin Becze
Guile currently doesn't allow loading multiple versions of a Module. For example this will not work. --- start.scm (import (a) (b (2))) (helloA) (helloB) --- a/a.scm (library (a) (export helloA) (import (rnrs) (b (1))) (define helloA (lambda () (display "hello from A1\n")