learnrust 0.1.0

the only purpose for this package for try cargo publish
Documentation
1
2
3
4
5
6
7
8
9
extern crate learnrust;

mod common;

#[test]
fn integration_it_adds_two() {
  common::setup();
  assert_eq!(4, learnrust::adder::add_two(2));
}