dinosay 0.1.0

A friendly dinosaur to speak your text
Documentation
1
2
3
4
5
6
7
8
9
10
use dinosay::Dinosay;
use std::env;

fn main() {
    if let Some(text) = env::args().nth(1) {
        text.dinosay();
    } else {
        eprintln!("Must provide text as an argument");
    }
}