2022-02-06 16:43:51 +08:00
|
|
|
fn main() {
|
|
|
|
// ANCHOR: here
|
|
|
|
let hello = String::from("السلام عليكم");
|
|
|
|
let hello = String::from("Dobrý den");
|
|
|
|
let hello = String::from("Hello");
|
2024-06-06 21:23:21 +08:00
|
|
|
let hello = String::from("שלום");
|
2022-02-06 16:43:51 +08:00
|
|
|
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_END: here
|
|
|
|
}
|