libdice 0.1.0

A package for parsing simple dice-rolling expressions
Documentation
1
2
3
4
5
fn main() {
    let text = "10 +";
    let expr = libdice::load(text).unwrap();
    println!("{:#?}", expr);
}