card 0.1.0

A simple crate for modelling card games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# playing-cards
Learning Rust by playing cards.

```rust
let mut player = Player::new(42);
let mut deck = Deck::new();
let card = deck.draw();
player.give(card);
player.score += 13;

println!("{}", player) // Player 42 with score 13: A-S
```

See `main.rs` for an example implementation of Go Fish.