neutron-engine 0.1.3

A lightweight markup parser for the Neutron styling language (.nt)
Documentation
1
2
3
4
5
6
7
8
9
10
// NOTE: this file re-exports Iris runtime components.
// It must NOT create a second copy of the AST/Stmt types.
// The canonical types live under `crate::iris::{parser, ...}`.

pub use crate::iris::parser::{Expr, Stmt, BinaryOp, UnaryOp, parse};
pub use crate::iris::interpreter::Interpreter;
pub use crate::iris::value::Value;