typist-rust 0.2.0

A simple typing tutor game.
Documentation
1
2
3
4
5
6
7
8
9
extern crate typist_rust;

// Constants that will eventually be read from a configuration file.
const NUM_ROUNDS: u32 = 2;
const NUM_WORDS: u32 = 6;

fn main() {
    typist_rust::run(NUM_ROUNDS, NUM_WORDS);
}