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() {
    // Unknown keyword other than eml
    let _ = eml!((foo x y));
}