🎯
Token Efficient
~53% fewer tokens than equivalent Python/JS. When you pay per token, syntax overhead matters.
~53% fewer tokens than Python/JS. First-class tool calls. Pipeline-native. Built for the agentic era.
npm install -g arc-langlet 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"}