Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 703 Bytes

File metadata and controls

27 lines (24 loc) · 703 Bytes

CLRNet Quick Start Guide

Follow these steps to build the CLI and run your first script:

  1. Configure the project with CMake:
    cmake -S . -B out/build
  2. Build the executable:
    cmake --build out/build
  3. Run the bundled example in dry-run mode (skips actual delays):
    ./out/build/clrnet run examples/scripts/hello.clr --dry-run
  4. Explain the script to see each step:
    ./out/build/clrnet explain examples/scripts/hello.clr
  5. Generate a starter script:
    ./out/build/clrnet init my-script-directory

For more details about the script language see docs/SCRIPT_REFERENCE.md.