fn main() {
let language = "spanish";
println!("Language choosed -> {}", language);
println!("Language choosed -> {language}");
// you can pass more than one variable
println!("A consideration -> x2 {}, {}", language, language);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: