hangmanrs 0.1.4

Hangman in your terminal
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process;

fn main() {
    if let Err(e) = hangmanrs::run() {
        println!("Application error: {}", e);
        process::exit(1);
    }
}