same problem: (base) mattei@MacBook-Pro-Touch-Bar library-FunctProg % guile GNU Guile 3.0.8.99-f3ea8 Copyright (C) 1995-2022 Free Software Foundation, Inc.
Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it under certain conditions; type `,show c' for details. Enter `,help' for help. scheme@(guile-user)> (import (ice-9 psyntax)) ;;; note: auto-compilation is enabled, set GUILE_AUTO_COMPILE=0 ;;; or pass the --no-auto-compile argument to disable. ;;; compiling /usr/local/share/guile/3.0/ice-9/psyntax.scm ;;; compiled /Users/mattei/.cache/guile/ccache/3.0-LE-8-4.6/usr/local/share/guile/3.0/ice-9/psyntax.scm.go While compiling expression: No variable named syntax? in #<module (#{ g116}#) 1017f9320> scheme@(guile-user)> On Wed, Feb 15, 2023 at 3:21 AM Robby Zambito <cont...@robbyzambito.me> wrote: > Hello, > > For some reason I am having trouble importing the (ice-9 psyntax) > module. Whenever I try to import it, I get the following error: > > scheme@(guile-user)> (import (ice-9 psyntax)) > While compiling expression: > No variable named syntax? in #<module (#{ g122}#) 7f539f071320> > > I have Guile 3.0.9 installed from Guix, running on x86_64. I've tried > using a Guix pure container, importing it transitively through R7RS > libraries rather than directly in the REPL. All yield the same error. > > Any ideas would be appreciated :) > > Robby > >