quoth 0.3.0

Quoth is a scannerless (no-lexing), developer-friendly parsing library for implementing DSLs and syntax parsers in Rust
Documentation
1
2
3
4
5
6
7
impl From<String> for Something {
    fn from(value: String) -> Something {
        Something(3, 5)
    }
}
hello!();
more_random_stuff!();