A package for parsing simple dice-rolling expressions
Find a file
2024-05-20 20:01:34 +01:00
src initial commit 2024-05-20 20:01:34 +01:00
.gitignore initial commit 2024-05-20 20:01:34 +01:00
Cargo.lock initial commit 2024-05-20 20:01:34 +01:00
Cargo.toml initial commit 2024-05-20 20:01:34 +01:00
README.md initial commit 2024-05-20 20:01:34 +01:00

Libdice

Example usage

let text = "10d20 + 5";
let results = libdice::load(text);
println!("{:#?}", results);