use process;
use ;
/// Set mimalloc as the global allocator.
/// Since the unsafe operations are encapsulated inside the mimalloc library,
/// this file compiles under the strict `unsafe_code = "forbid"` rule.
static GLOBAL: MiMalloc = MiMalloc;
/*
cargo run
cargo run -- -m 4 -i 10
cargo run -- --once --verbose
cargo test -- --show-output
cargo doc --open
cargo b -r && cargo install --path=.
*/
/// Entry point of the application.
///
/// Manages the high-level flow and handles potential errors gracefully.