Konrad Hinsen <konrad.hin...@fastmail.net> writes: > Unfortunately, it doesn't look as straightforward as I thought. > A standard Guile script retrieves command line arguments using > (command-line). "guix repl" should ideally manipulate the return > value of (command-line) to make things just work, but I haven't > found a way to do this.
Reading the Guile manual helps, of course, once you know where to look. It's (set-program-arguments ...), which starts to make sense once you figure out that (program-arguments) is a synonym for (command-line). I'll see if I can do something with that. Cheers, Konrad