7 lines
114 B
Rust
7 lines
114 B
Rust
use oxidice_lib::dice::*;
|
|
|
|
fn main() {
|
|
let outcome = Handful::grab(3, 6).roll();
|
|
println!("{outcome}");
|
|
}
|