Text To Speech module for Rust
Add this to your cargo.toml file:
toml
tts_rust = "0.2.0"
```rust // use use ttsrust::textspeech; use ttsrust::textspeechtext; use ttsrust::testaspeech;
fn main() { // Anything inside the double quotes (" ") will be spoken out textspeech("Hello, World!"); // Speak and display: textspeechtext("Hello, I am speaking and writing!"); // Test the module by doing this: testa_speech(); }
```
Thank you! :smile: