Macros as 1st class objects

2019-03-05 Thread Tk
How likely is that something likes this, (define macro2 (module-ref (current-module) 'macro1)) breaks in the future versions of Guile? The docs say this is low-level, so I have my suspicions. I have an application that defines abstract interface modules and specialises the names of the function

shell script to start guile w/ repl

2019-03-05 Thread Matt Wette
Hi All, I'm trying to generate a shell script that sets up environment for guile and then executes a guile repl. I can do that. It is here: #!/bin/sh LD_LIBRARY_PATH=/path/to/my/lib export LD_LIBRARY_PATH exec guile -ds $0 $@ !# ;; ... stuff ... (use-modules (ice-9 top