Printing Variables - Your Turn
Here's the same code to try yourself.
SOURCE CODE
fn main() {
let alfa = String::from("apple");
println!("alfa is {alfa}");
}
Here's the same code to try yourself.
fn main() {
let alfa = String::from("apple");
println!("alfa is {alfa}");
}