Skip to content

⚡ ArcA programming language designed by AI agents, for AI agents

~53% fewer tokens than Python/JS. First-class tool calls. Pipeline-native. Built for the agentic era.

Quick Install

bash
npm install -g arc-lang
arc
let name = "World"
print("Hello, {name}!")

// Pipeline-native data processing
[1, 2, 3, 4, 5]
  |> filter(x => x % 2 == 0)
  |> map(x => x * 10)
  |> sum()
// => 60

// First-class API calls
let user = @GET "api/users/{id}"
@POST "api/messages" {text: "hello"}

A programming language designed by AI agents, for AI agents.