I would just chime in that this has caused me some trouble in the past,
where an unbound variable is exported by a module.
Damien Mattei writes:
> hello,
> i noticed that when defining a module and exporting a procedure not defined
> this does not cause
> an error in Guile ( at the opposite
hello,
i noticed that when defining a module and exporting a procedure not
defined this does not cause an error in Guile ( at the opposite to Racket
for example).
example:
(define-module (my_module)
#:export (my_undefined_procedure)
(include-from-path "file.scm"))
in REPL:
(use-modules (my_m