lambda_calculus 3.4.0

A simple, zero-dependency implementation of pure lambda calculus in Safe Rust
Documentation
use lambda_calculus::{
    parse,
    parser::{parse_with_context, ParseError},
    term::{
        Context,
        Notation::{Classic, DeBruijn},
    },
};

#[test]
fn parse_debruijn_and_classic() -> Result<(), ParseError> {
    for (ctx, dbr, cla) in [
        (Context::new(&["a", "b"]), "12", "a b"),
        (Context::empty(), "λλ21", "λs. λz. s z"),
        (
            Context::new(&["w", "y", "z"]),
            "λ2134(λ3215(λ4321)3215)2134",
            "λx. w x y z (λy. w x y z (λz. w x y z) w x y z) w x y z",
        ),
        (
            Context::new(&["a", "b", "f", "z", "w", "y"]),
            // See: http://alexandria.tue.nl/repository/freearticles/597619.pdf
            "λ2(λ421(5(λ4127)λ8))67",
            // the free variable list is ..ywzfba
            "λx. a (λt. b x t (f (λu. a u t z) λs. w)) w y",
        ),
        (
            Context::new(&["s", "z"]),
            // apply `plus zero one` to `s` and `z`
            "(λλλλ42(321))(λλ1)(λλ21)12",
            "(λm.λn.λs.λz. m s (n s z)) (λs.λz. z) (λs.λz. s z) s z",
        ),
    ] {
        let term_dbr = parse(dbr, DeBruijn)?;
        let term_cla = parse_with_context(&ctx, cla, Classic)?;
        assert_eq!(term_dbr, term_cla);
    }
    Ok(())
}