1 2 3 4 5 6 7 8 9
#![deny(unused_must_use)] use sfwtools::echo_app; use std::env; fn main() { let args = env::args().collect::<Vec<String>>(); echo_app().run(args) }