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
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
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
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")