tudelft-dice-example 0.1.0

diceroller
Documentation

Dice roller

use tudelft_example_dice::roll;

let res = roll("2d6")

enum DiceRollError {
    Parse
}

fn roll(s: impl AsRef<str>) -> Result<> {}