dice_roller

A simple Rust library for taking a dice string as an input and calculating a result.

Usage

``` use dice_roller::dice::Dice;

let dice = Dice::createdice("2d20 + 1").unwrap(); let result = dice.rolldice(); ```