mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-14 19:01:35 +03:00
20 lines
347 B
Markdown
20 lines
347 B
Markdown
|
# guile
|
||
|
|
||
|
> Guile Scheme interpreter.
|
||
|
|
||
|
- 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}}`
|