rust-lab-1 0.1.1

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
7
8
use rust_lab;
mod common;

#[test]
fn it_adds_two() {
    common::setup();
    assert_eq!(4, rust_lab::add_two(2));
}