bugl
bugl
HomeLearnPatternsPathsSearch
HomeLearnPatternsPathsSearch

Loading lesson path

Learn/Rust/Rust Tutorial
Rust•Rust Tutorial

Rust Get Started

Flash cards

Review the key moves

1/4
Core idea

What is the main idea behind Rust Get Started?

Lesson checks

Practice each idea before moving on

Short Mimo-style checks built from this lesson's code, terms, and sequence.

1Quick choice

Which statement best captures the main point of this lesson?

2Fill blank

Complete the missing token from the example code.

___!("Hello World!");
3Order

Put the learning moves in the order that makes the concept easiest to apply.

Build and Run the Project
Create a New Project
Check Installation

Runnable example

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

Install Rust

However, if you want to download and install rust, you can go to rust-lang.org and follow the instructions there.

Or, if you are using the terminal, you can run:

curl https://sh.rustup.rs -sSf | sh

Check Installation

After installing, check if Rust is installed correctly by running:

rustc --version

The output will look something like this, depending on your version number:

rustc 1.86.0 (05f9846f8 2025-03-31)

Create a New Project

Use Cargo to create a new Rust project:

cargo new my_project

The output will look something like this:

Creating binary (application) `my_project` package
note: see more `Cargo.toml` keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

This creates a folder called my_project with the following files:

  • Cargo.toml : Project settings
  • src/main.rs : Main Rust file

The main.rs file contains this default code:

fn main() {
 println!("Hello, world!");
}

Build and Run the Project

cd my_project

Then build and run the project

cargo run

The output should be

Congratulations! You have just run your first Rust program.

Previous

Rust Introduction

Next

Rust Syntax