Skip to content

Navi

A high-performance programming language.

VitePressVitePress

Install Navi

Run the following command in your terminal:

sh
curl -sSL https://navi-lang.org/install | bash

Quick Start

The following main.nv is a simple "Hello, World!" program in Navi:

nv
fn main() throws {
    println("Hello, World!");
}

Run the program with the following command:

sh
$ navi run

Continue learning about Navi.