Rust
Rust
Generating Random Integer in Range
See more PRNG Examples
Demonstrates how to generate random integers in a specified range.Chilkat Rust Downloads
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let _ = false;
let fortuna = chilkat::Prng::new();
// Generate random integers between 12 and 24 inclusive
for i in 0..=100 {
println!("{}", fortuna.random_int(12, 24));
}