bug#38760: R7RS define-library form is not supported

2020-01-12 Thread Andy Wingo
Thanks for the report; fixed! Patches welcome if there are any bugs :) Cheers, Andy

bug#38760: R7RS define-library form is not supported

2019-12-27 Thread Amirouche
Using guile-2.9.7. Here is the tests files: ```scheme $ cat main.scm (import (scheme base)) (import (mylib)) (func) $ cat mylib.scm (define-library (mylib) (export func) (import (scheme base)) (import (scheme write)) (begin (define (func) (display 42)(newline ``` Whe