rain-lang 0.0.1

An implementation of an RVSDG in Rust with a concept of lifetimes
Documentation
1
2
3
4
5
6
7
8
9
10
11
/*!
Evaluation and normalization of `rain` values
*/

mod eval_sexpr_impl;

/// An evaluation context for `rain` values.
#[derive(Debug, Clone)]
pub struct EvalCtx {
    //TODO: this
}