risp/src/main.rs
philipp 350b1e5ebb
Some checks failed
CI/CD Pipeline / test (push) Failing after 32s
add paragraph parser to lib, add test for teg
2024-02-05 14:28:57 +01:00

9 lines
142 B
Rust

use risp::law::{Law, LawBuilder};
fn main() {
env_logger::init();
let law: Law = LawBuilder::new("StGB").into();
law.to_md();
}