book/listings/ch08-common-collections/listing-08-14/src/main.rs

23 lines
767 B
Rust

fn main() {
// ANCHOR: here
let hello = String::from("السلام عليكم");
let hello = String::from("Dobrý den");
let hello = String::from("Hello");
let hello = String::from("שלום");
let hello = String::from("नमस्ते");
let hello = String::from("こんにちは");
let hello = String::from("안녕하세요");
let hello = String::from("你好");
let hello = String::from("Olá");
// ANCHOR: russian
let hello = String::from("Здравствуйте");
// ANCHOR_END: russian
// ANCHOR: spanish
let hello = String::from("Hola");
// ANCHOR_END: spanish
// ANCHOR: bengali
let hello= String::from("নমস্কার");
//ANCHOR_END: bengali
// ANCHOR_END: here
}