1 2 3 4 5 6 7 8
use hexed::Hexed; use structopt::StructOpt; fn main() { if let Err(e) = Hexed::from_args().run() { eprintln!("{}", e); } }