feat: add keep_highest method to Outcome

This commit is contained in:
2025-11-16 11:08:20 +01:00
parent 8c45bf629c
commit d29fa81fbb
4 changed files with 35 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
use oxidice_lib::dice::*;
fn main(){
fn main() {
let roll = Handful::grab_exploding(1, 6, 6).roll();
println!("{roll}");
}