//! Tier 1 — deterministic PRNG for a Monte Carlo simulation.
//!
//! Estimate π by sampling uniformly in the unit square and counting
//! the fraction that fall inside the unit quarter-circle. The point
//! is to demonstrate a *reproducible* run: seed once, everyone with
//! the same seed sees the same number.
//!
//! Run with: `cargo run --release --example tier1_simulation`.
use Xoshiro256;