Chonk 0.1

A lightweight parser combinator framework.

Usage

```rust use chonk::prelude::*;

if is("abc").test("abcd") { println!("It matches!"); } ```