bug#38760: R7RS define-library form is not supported
Thanks for the report; fixed! Patches welcome if there are any bugs :) Cheers, Andy
bug#38760: R7RS define-library form is not supported
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