-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
use rust_translate::{translate, translate_to_english, translate_from_english}; | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
// Translate text from any language to any other language | ||
let translated_text = translate("Bonjour le monde!", "fr", "en").await.unwrap(); | ||
println!("Translated text: {}", translated_text); | ||
|
||
// Translate text to English | ||
let english_text = translate_to_english("Bonjour le monde!").await.unwrap(); | ||
println!("Translated to English: {}", english_text); | ||
|
||
// Translate text from English to any other language | ||
let spanish_text = translate_from_english("Hello, world!", "es").await.unwrap(); | ||
println!("Translated to Spanish: {}", spanish_text); | ||
} |