HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

carp — REPL and build tool for Carp. More information: <https://carp-lang.github.io/carp-docs/Manual.html>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandbuildandclicarptoolforrepl

Problem

How to use the carp command: REPL and build tool for Carp. More information: <https://carp-lang.github.io/carp-docs/Manual.html>.

Solution

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}}

Code Snippets

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}}

Context

tldr-pages: common/carp

Revisions (0)

No revisions yet.