rump 0.1.0

Text snippets on the command line.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate rump;

use std::process::exit;

use rump::cli;

fn main() {
    if cli::run().is_err() {
        exit(1);
    }
}