1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 19:15:27 +02:00

carp: add page (#6456)

This commit is contained in:
pixel 2021-09-05 14:11:45 +02:00 committed by GitHub
parent 2444892984
commit eb3975485d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

28
pages/common/carp.md Normal file
View file

@ -0,0 +1,28 @@
# carp
> REPL and build tool for Carp.
> More information: <https://carp-lang.github.io/carp-docs/Manual.html>.
- Start a REPL (interactive shell):
`carp`
- Start a REPL with a custom prompt:
`carp --prompt "{{> }}"`
- Build a `carp` file:
`carp -b {{path/to/file.carp}}`
- Build and run a file:
`carp -x {{path/to/file.carp}}`
- Build a file with optimizations enabled:
`carp -b --optimize {{path/to/file.carp}}`
- Transpile a file to C code:
`carp --generate-only {{path/to/file.carp}}`