trump 0.1.0

Spawn a background thread that prints a Donald Trump quote every 10 seconds.
Documentation
1
2
3
4
5
6
7
8
9
use trump::start_quotes;
use std::time::Duration;
use std::thread;

fn main() {
    start_quotes();
    // Keep main alive to see some quotes.
    thread::sleep(Duration::from_secs(35));
}