1 2 3 4 5 6 7
#![warn(clippy::pedantic)] fn main() { if let Err(e) = laydown::get_args().and_then(laydown::run) { eprintln!("{}", e); std::process::exit(1); } }