Skip to main content

kl_hyphenate_commons/
lib.rs

1/*
2Hyphenation internals
3*/
4
5#[macro_use] extern crate serde;
6extern crate atlatl;
7
8mod language;
9pub mod dictionary;
10pub mod parse;
11
12pub use language::*;