xdy 0.9.0

Complex RPG dice expression evaluator with histogram support.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Tests
//!
//! Herein are test cases for the compiler. The test cases are stored in
//! files in the `../tests` directory. Each file contains a series of test
//! cases, each of which consists of a source dice expression and an expected
//! print rendition.

mod compiler;
mod diagnostics;
mod evaluator;
mod histogram;
mod optimizer;
mod parser;