mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-08 06:57:24 +00:00
Update cheatsheets
This commit is contained in:
33
carp
Normal file
33
carp
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user