mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
670 B
20 lines
670 B
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_END: here
|
|
}
|