rain_lang/
lib.rs

1/*!
2`rain` is an implementation of an [RVSDG](https://arxiv.org/abs/1912.05036) with a concept of
3lifetimes, inspired by (and implemented in) Rust.
4*/
5#![forbid(unsafe_code, missing_docs, missing_debug_implementations)]
6#![feature(weak_into_raw)]
7
8pub mod graph;
9pub mod value;
10pub mod util;
11
12#[cfg(feature="parser")]
13pub mod parser;