fn main() { let language = "Rust"; let year = 2015; println!("{} was first released around {}", language, year); }
Click Run to execute this code.