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 | bash
The 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 run
Continue learning about Navi.