inpt 0.1.5

A derive crate for dumb type-level text parsing.
Documentation
1
2
3
4
#[inpt::main(regex = "(?:my name is|i am) (.+)")]
fn main<'a>(name: &'a str) {
    println!("hello {name}!")
}