Medinand PANDI 4a9cb80e8b
Update variables1.rs
Déclarer et initialiser la variable x avec le mot-clé let.
2024-06-06 06:16:31 +02:00

14 lines
203 B
Rust

// variables1.rs
//
// Make me compile!
//
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a
// hint.
fn main() {
let x = 5;
println!("x has the value {}", x);
}