1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 15:02:09 +02:00
tldr/pages/common/guile.md
2019-06-07 22:58:59 +01:00

20 lines
405 B
Markdown

# guile
> Guile Scheme interpreter.
> More information: <https://www.gnu.org/software/guile>.
- Start the Guile Scheme REPL:
`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}}`