#![forbid(unsafe_code)]// Per spec/rust-no-unsafe/index.md: this workspace contains no `unsafe`, and
// the compiler enforces that rather than a grep.
fnmain(){let args:Vec<String>=std::env::args().skip(1).collect();matchsnomed_cli::run(&args){Ok(output)=>print!("{output}"),Err(e)=>{eprintln!("error: {e}");std::process::exit(1);}}}