Start Guile shell script that listens on a port for REPL client (opens in new tab)
Start Guile shell script that listens on a port for REPL client Guile, while running a program, can listen to a port for a REPL client, like a Swank server on SBCL. Here's how to connect from Geiser to a running Guile script. Start the Guile shell-script This is how to start a Guile script: #!/usr/local/bin/guile3 \ -e main --listen -s !# (use-modules (...)) ... Note the the first line starts with #! and third starts with !#. The first line contains the name of the Guile executable and the pa...
Read the original article