GalM is pattern matching library.
Inspired by Galmoji.
Put the following in your project's Cargo.toml file:
toml
[dependencies]
galm = "0.0.2"
And overwrite in your project's main.rs file:
```rust fn main() { let galm: galm::Database = galm::new(); let distance: u8 = galm.get_distance("王", "玉");
assert_eq!(distance, 30);
} ```
Print the most similar string from the strings separated by commas.
```bash
cargo build --example galm --release
./target/release/examples/galm "王様レストラン" -d "皇様レストラン,玉様レストラン,大様レストラン"
```