diff options
author | Kaleb Elwert <belak@coded.io> | 2020-01-08 02:07:14 -0800 |
---|---|---|
committer | Kaleb Elwert <belak@coded.io> | 2020-01-11 00:36:24 -0800 |
commit | d5f46b11ef642a8f1675f7cb3a1d8cda450bdb13 (patch) | |
tree | 95b79fba78d02b15fa78450fe2c1e2cebec43268 /src |
Initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..31e1bb2 --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,7 @@ +#[cfg(test)] +mod tests { + #[test] + fn it_works() { + assert_eq!(2 + 2, 4); + } +} |