sample_adder_topanisto 0.1.0

Practice with the Rust Book Ch14! Hello digital footprint!
Documentation
1
2
3
4
5
6
7
8
9
use sample_adder_topanisto;

mod common;

#[test] //no need to add cfg() since separate directory
fn it_adds_two() {
    common::setup();
    assert_eq!(4, sample_adder_topanisto::add_two(2));
}