Simple and Clean Syntax
Designed with a straightforward and clean syntax.
Run the following command in your terminal:
curl -sSL https://navi-lang.org/install | bashThe following main.nv is a simple "Hello, World!" program in Navi:
fn main() throws {
    println("Hello, World!");
}Run the program with the following command:
$ navi runContinue learning about Navi.