New Project

Create a new project

To create a new project, run the following command:

ruda init hello

This will create a new directory called hello containing the following files:

src/
    main.rd
Ruda.toml
.gitignore

Running the project

First make sure you are in the project directory:

cd hello

Then run the following command:

ruda run

This will build and run the project. You should see the following output:

Hello, world!