1 2 3 4 5 6 7 8 9 10
// these defs are here so that examples work without having to turn // the whole thing into a library pub mod party { pub mod fireworks { mod runner; mod sim; pub use runner::run; } }