Christopher Girvin b8d4133328 variables done
2022-05-14 16:21:32 -04:00

9 lines
181 B
Rust

// intro2.rs
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` for a hint.
fn main() {
println!("Hello {}!", word = String::from("world"));
}