Hello World
Create a project folder
Section titled “Create a project folder”mkdir ngn && cd ngnCreate an entrypoint
Section titled “Create an entrypoint”Create a file named main.ngn with the following:
fn main() { print("Hello, ngn!")}Your entrypoint file’s name does not have to be main.ngn
Run it
Section titled “Run it”ngn run main.ngnYou should see:
Hello, ngn!