rolls 0.1.2

This command exists to help roll dices in D&D games. The following are implemented: d4, d6, d8, d10, d20.
1
2
3
4
5
6
7
8
use crate::cli::execute;

mod cli;
mod dice;

fn main() {
    execute().unwrap();
}