cute-dnd-dice 1.0.1

Simple library to roll dices
Documentation

cute-dnd-dice

Build Crates.io Documentation

Simple library to roll dices

Available features

  • std - Enables std support. Enabled by default.

Usage

extern crate cute_dnd_dice;

use cute_dnd_dice::Roll;

fn main() {
    let roll = Roll::from_str("2d20+10").expect("To parse roll");
    println!("I roll {}", roll.roll());
}