mirror of
https://github.com/mii443/pronunciation.git
synced 2025-08-22 15:15:41 +00:00
11 lines
221 B
Rust
11 lines
221 B
Rust
use pronunciation::pronunciation::Pronunciation;
|
|
|
|
|
|
fn main() {
|
|
let pronunciation = Pronunciation::new("cmudict-0.7b_baseform");
|
|
|
|
let word = "valo";
|
|
|
|
println!("{}", pronunciation.get_kana(word.to_string()));
|
|
}
|