sfw-tools 0.5.0

Functions and programs from the book Software Tools
Documentation
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)
}