bowling 0.0.1

A crate to deal with bowling scoring.
Documentation
1
2
3
4
5
6
7
8
extern crate bowling;
use bowling::gamestate::*;

#[test]
fn new_frame() {
    let frame = Frame::new();
    assert_eq!(true, false);
}