2018-10-29 11:12:43 +00:00
|
|
|
# guile
|
|
|
|
|
|
|
|
> Guile Scheme interpreter.
|
2019-06-07 11:58:27 +01:00
|
|
|
> More information: <https://www.gnu.org/software/guile>.
|
2018-10-29 11:12:43 +00:00
|
|
|
|
2021-09-12 15:03:27 +01:00
|
|
|
- Start a REPL (interactive shell):
|
2018-10-29 11:12:43 +00:00
|
|
|
|
|
|
|
`guile`
|
|
|
|
|
|
|
|
- Execute the script in a given Scheme file:
|
|
|
|
|
|
|
|
`guile {{script.scm}}`
|
|
|
|
|
|
|
|
- Execute a Scheme expression:
|
|
|
|
|
|
|
|
`guile -c "{{expression}}"`
|
|
|
|
|
|
|
|
- Listen on a port or a Unix domain socket (the default is port 37146) for remote REPL connections:
|
|
|
|
|
|
|
|
`guile --listen={{port_or_socket}}`
|