Re: possible bug in export

2023-05-03 Thread Blake Shaw
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

possible bug in export

2023-04-30 Thread Damien Mattei
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