Skip to content

Installation

This page covers the minimum needed to build Arkoi locally.

Requirements

  • Git
  • CMake
  • A C++23 compiler

Build

git clone https://github.com/ArkoiSystems/arkoi_language
cd arkoi_language
cmake -S . -B build
cmake --build build

Run the compiler

The build produces an arkoi_language executable. Run it against one or more .ark files:

./build/bin/arkoi_language example/hello_world/hello_world.ark

Test

ctest --test-dir build --output-on-failure

Next

Read the syntax overview to see the current language shape, or go to CLI usage for command examples.