Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

chore(example.rs): Add Bangla #1213

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion _includes/example.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ fn main() {
"Ciao", "こんにちは", "안녕하세요",
"Cześć", "Olá", "Здравствуйте",
"Chào bạn", "您好", "Hallo",
"Hej", "Ahoj", "سلام","สวัสดี"];
"Hej", "Ahoj", "سلام",
"สวัสดี", "হ্যালো"];

for (num, greeting) in greetings.iter().enumerate() {
print!("{} : ", greeting);
Expand All @@ -24,6 +25,7 @@ fn main() {
13 => println!("Tento kód můžete upravit a spustit"),
14 => println!("این کد قابلیت ویرایش و اجرا دارد!"),
15 => println!("โค้ดนี้สามารถแก้ไขได้และรันได้"),
16 => println!("এই কোড সম্পাদনাযোগ্য এবং চালানোর যোগ্য!"),
_ => {},
}
}
Expand Down