trump 0.1.1

Spawn a background thread that prints a Donald Trump quote every 10 seconds.
Documentation
# trump

Spawn a background thread that prints a Donald Trump quote every 10 seconds.

## Usage

Add to your Cargo.toml:

```toml
[dependencies]
trump = "0.1"
```

Example:

```rust
use trump::start_quotes;
use std::time::Duration;
use std::thread;

fn main() {
    // Start background printing; this call returns immediately.
    start_quotes();

    // Keep main alive to observe several quotes.
    thread::sleep(Duration::from_secs(35));
}
```

## License

MIT