# Zero - 에이전트를 위한 프로그래밍 언어

> Clean Markdown view of GeekNews topic #29780. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=29780](https://news.hada.io/topic?id=29780)
- GeekNews Markdown: [https://news.hada.io/topic/29780.md](https://news.hada.io/topic/29780.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2026-05-23T09:31:02+09:00
- Updated: 2026-05-23T09:31:02+09:00
- Original source: [zerolang.ai](https://zerolang.ai/)
- Points: 3
- Comments: 4

## Topic Body

- Vercel Labs에서 **에이전트가 주 사용자**가 되는 환경을 가정해 처음부터 다시 설계된 실험적 프로그래밍 언어  
- **즉석에서 배울 수 있고**, Inspect·Repair가 결정적이며, 표준 라이브러리 우선, 대부분의 작업에 명백한 한 경로가 있을 만큼 **명시적인 언어**를 목표로 함  
- 컴파일러가 **구조화된 진단·복구 정보**를 출력해 에이전트가 직접 코드를 점검·수리하도록 지원  
- **핵심 설계 특성**  
  - **작은 표면적(Small surface area)**: 에이전트가 작업하면서 배울 수 있는 언어를 지향. 규칙적인 문법, 적은 특수 사례, 다음 편집을 가리키는 컴파일러 피드백 제공  
  - **라이브러리 우선(Library first)**: 패키지보다는 문서화된 표준 라이브러리 API로 대부분의 프로그램이 시작되도록   
  - **도구로 검사 가능(Inspectable by tools)**: 진단, 그래프, 크기 리포트, 설명, 수리 계획(repair plans)을 에이전트가 소비할 수 있는 **구조화된 데이터**로 노출  
- 코드 예시  
  ```  
  fn answer i32  
    ret + 40 2  
  pub fn main Void world World !  
    if == answer() 42  
      check world.out.write "math works\n"  
  ```  
- 설치: `curl -fsSL https://zerolang.ai/install.sh | bash`

## Comments



### Comment 58105

- Author: dudnspa0203
- Created: 2026-05-23T13:11:52+09:00
- Points: 1

geeknews에 언제 올라오나 기다렸는데, 드디어 올라왔네요.  
개인적으로 고려해볼만한 새로운 시스템 프로그래밍 언어가 나오는 것 같아서 기대가 되네요.

### Comment 58101

- Author: heycalmdown
- Created: 2026-05-23T11:01:41+09:00
- Points: 1

괄호 없는 리습인데요?

### Comment 58103

- Author: aer0700
- Created: 2026-05-23T11:25:38+09:00
- Points: 1
- Parent comment: 58101
- Depth: 1

별 생각 없었는데, 그런 관점에서 보니 엄청 좋아보이네요.

### Comment 58100

- Author: jamiecha
- Created: 2026-05-23T10:31:06+09:00
- Points: 1

간략화된 Rust 느낌이 강하게 나고 어떤건 go 랑 비슷하고... 어떤 부분은 또 zig 같고... 재미있네요.  
x86 Linux 기준 컴파일러(단일 바이너리) 사이즈는 800KB 이고 hello.0 를 빌드한 release binary size 가 289 bytes 밖에 안되네요.   
큰 규모의 작업에도 유용할 수 있을지, eco 는 어떻게 구성할지 더 두고 봐야겠지만 일단은 흥미롭게 봤습니다.
