Skip to main content

Quickstart

Get your first Zep program running in under a minute.

1. Install Zep

npm install zep
Verify installation:
zep --help

2. Create your first program

Create hello.zp:
#[export]
fn main(): void {
    print("Hello, World!")
}

3. Run it

zep run hello.zp
Output: