7 lines
95 B
Rust
7 lines
95 B
Rust
use oxydice_lib::*;
|
|
|
|
fn main() {
|
|
let mut dice = dice::Dice::grab(3, 6);
|
|
dice.roll();
|
|
}
|