On 15-02-2023 03:14, Robby Zambito wrote:
Hello, For some reason I am having trouble importing the (ice-9 psyntax) module. [...]
This is an undocumented module; you aren't supposed to import it directly. In fact, looking at the first few lines of ice-9/psyntax.scm, ice-9/psyntax.scm is part of the (guile) module; there does not exist a separate (ice-9 psyntax) module:
(eval-when (compile) (set-current-module (resolve-module '(guile)))) The only use of psyntax is in ice-9/boot.scm:module/ice-9/boot-9.scm:;; $sc-dispatch is an implementation detail of psyntax. It is used by
module/ice-9/boot-9.scm:(primitive-load-path "ice-9/psyntax-pp")... and that uses ice-9/psyntax-pp.scm, not ice-9/psyntax.scm (the former is generated from the latter when Guile itself is compiled).
What are you trying to import (ice-9 psyntax) for? Greetings, Maxime.
OpenPGP_0x49E3EE22191725EE.asc
Description: OpenPGP public key
OpenPGP_signature
Description: OpenPGP digital signature