paulistrings/examples.rs
1//! Worked-example walkthroughs of full-scale simulations.
2//!
3//! Each submodule is documentation-only (no code) — the runnable source
4//! lives under `crates/paulistrings/examples/` and the matching narrative
5//! is rendered here by `include_str!` from
6//! `crates/paulistrings/docs/examples/`.
7
8#[doc = include_str!("../docs/examples/ising_2d_quench.md")]
9pub mod ising_2d_quench {}