Loading...
CONCEPT

Rust: Defining Variables

Learn how to define variables in Rust.

avatar
friendlymatthew
Concept Author
3 min reading time

Variables

In Rust, variables are defined using the let keyword.

let team_name = "Rustaceans";