emlex 0.1.0

A zero-cost S-expression mathematical DSL engine for Rust. Provides compile-time evaluation, AST preservation, optimization, and reverse DSL reconstruction.
Documentation
1
2
3
4
5
6
use emlex::prelude::*;

fn main() {
    // Missing argument (invalid parenthesis matching)
    let _ = eml!((eml x));
}