1 2 3 4 5 6 7 8 9 10
//! simular CLI - Unified Simulation Engine //! //! Minimal entry point. All logic is in the `cli` module. use simular::cli::{run_cli, Args}; use std::process::ExitCode; fn main() -> ExitCode { run_cli(Args::parse()) }