mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
18 lines
337 B
Plaintext
18 lines
337 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# sbcl
|
|
|
|
> High performance Common Lisp compiler.
|
|
> More information: <https://www.sbcl.org/manual/index.html#Command-Line-Options>.
|
|
|
|
- Start a REPL (interactive shell):
|
|
|
|
`sbcl`
|
|
|
|
- Execute a Lisp script:
|
|
|
|
`sbcl --script {{path/to/script.lisp}}`
|